In the following example we query a Faust patch for its OSC interface (https://faustdoc.grame.fr/manual/osc/#discovering-the-osc-interface-of-an-application): ```py from iipyper import OSC, run, repeat def main(port=5511): osc = OSC(port=port) osc.create_client("faust", port=5510) osc("faust", "/*", "get") @osc.args("/*") def _(address, *args): print(f"{address} {args}") if __name__=='__main__': run(main) ``` This example outputs: ``` OSC client created 127.0.0.1:5510 OSC message sent /*:('get',) OSC server created 127.0.0.1:5511 ``` And the response to the `get` request is not received. What should the pattern be here?
In the following example we query a Faust patch for its OSC interface (https://faustdoc.grame.fr/manual/osc/#discovering-the-osc-interface-of-an-application):
This example outputs:
And the response to the
getrequest is not received.What should the pattern be here?