pyliblo
pyliblo copied to clipboard
Python bindings for the liblo OSC library
Hi, Is there a way to catch all errors occuring in message handlers and prevent the `Exception ignored in: 'liblo._msg_callback'` ? I tried wrapping the [`server.recv()`](https://github.com/jean-emmanuel/mentat/blob/master/mentat/engine.py#L181-L187) call in a `try`...
Hi. Tired that my IDE(s) has no knowledge of the liblo lib, I made an interface file (.pyi) with some typing. This is an interface file, that means the code...
DeprecationWarning: inspect.getargspec() is deprecated since Python 3.0, use inspect.signature() or inspect.getfullargspec() server.recv(100)
Hello, I tried to install pyblio on my Windows 10 computer but I receive this error: `C:\Windows\System32>pip install pyliblo Collecting pyliblo Using cached pyliblo-0.10.0.tar.gz (29 kB) Building wheels for collected...
Hey, I have a problem creating the server. server = liblo.Server(9001) the script ends the execution exactly on this line, without giving me any error. I tried encapsulating it in...
I'm used to url handling in stuff like django, where components can be passed as variables: I'm constructing osc paths like this: `path = "/vis/smilies/{control_number}/amount".format(control_number=x)` is there a way to...
If multiple connections are made between a client and a server using a string as the address only the first message will be sent. The example code below illustrates the...
I'm trying to add a method to a simple glob handler like: `"/message/raw/*"` I know C liblo supports this kind of pattern matching. But I'm getting wrong results with `pyliblo`....
Does this binding support the broadcast or multicast features of liblo? Naively I tried send on 255.255.255.255:1234 and receive on port 1234 of a neighboring machine, it didn't seem to...
* SLIP is defined in RFC1055 : https://tools.ietf.org/rfc/rfc1055.txt * OSC v1.1 requires use of it; * The underlying `liblo` library has supported it for a while; This PR allows users...