oscpy icon indicating copy to clipboard operation
oscpy copied to clipboard

An efficient OSC implementation compatible with python2.7 and 3.5+

Results 20 oscpy issues
Sort by recently updated
recently updated
newest added

I suggest that the example have an option to show running a service as a persistent one so it doesn't stop on app close. It could be a check box...

enhancement

**Describe the bug** client send_message raise exception when sending blobs **To Reproduce** OSCClient(b'localhost', 10000).send_message(b'/my_uuid', [bytearray(range(16)),]) **Expected behavior** 16 bytes blob sent to server **Logs/output** Traceback (most recent call last): File...

bug
good first issue

In Python, the only semantic difference between `bytes` and `bytearray` data structures, is that the former are immutable and the latter are mutable. It is similar to the difference between...

enhancement

It would be useful to have an example about sending/sharing a bundle with a client. I am currently working on how to use a bundle so I can send a...

Hi, how could I implement oscpy with cooroutines using asyncio, I don't understand how to implement the below. OSCAsyncServer exist in somewere ? Server (async) (TODO!) from oscpy.server import OSCThreadServer...

enhancement

The code works on mac, but on an Android device it seems that the service and main app don't exchange (respond to) messages from one another. Because if I don't...

question

Hi tshirtman, A simple stop_all() on a server is producing an error message on Win10 (not on Linux): ``` Traceback (most recent call last): File "D:\blender-2.80-windows64\2.80\python\lib\threading.py", line 917, in _bootstrap_inner...

Hi, This issue might be related or not to issue #43. In my new Blender add-on project, I implemented an automatic retry function for the OSC server that fires every...