python-osc
python-osc copied to clipboard
Open Sound Control server and client in pure python
This adds type checking in CI with `mypy`, a basic configuration for `mypy` and fixes the errors that are found. The configuration is very nearly the default and mostly doesn't...
This allows type checkers to make use of the types from this package when validating consuming code. Fixes https://github.com/attwad/python-osc/issues/155
It looks like this project is type annotated, yet those annotations aren't available to consumers. In case you're not aware, you can add a [`py.typed` file](https://peps.python.org/pep-0561/#packaging-type-information) in the root of...
So first off, I am not a code guy, and am using OSC with Indigo, my home automation system, to send out OSC commands to light controlling software. Indigo has...
I'm a python probie, I'm trying to put the message that I send from my phone to GUI, or use the message as an order to execute some command. But...
I'm trying to use python-osc to make OBS receive and send OSC messages. This [OBS plugin](https://obsproject.com/forum/resources/osc-sender-for-obs.763/) uses python-osc to send messages. Inside that code, all osc_server code is commented because...
Hi, I just used the following sample code to test the server with my TouchOSC Surface: ``` from pythonosc.dispatcher import Dispatcher from pythonosc.osc_server import BlockingOSCUDPServer def print_handler(address, *args): print(f"{address}: {args}")...
Hello all. I am doing a bridge between MaxMSP and Python and it works fine to send data **from** python to a patch using udp simple client. But the server...
I want to make a server/client then send and receive broadcast message. For the client, I used : client = udp_client.SimpleUDPClient("192.168.0.255", 10000) client._sock.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1) client.send_message("/abc" , "helloworld") It is...
I am trying to acquire the timestamps associated with each packet that I am receiving, rather than using the system time for when each packet is being received. I modified...