oscpy icon indicating copy to clipboard operation
oscpy copied to clipboard

An example to send and receive a bundle

Open sergeLabo opened this issue 3 years ago • 1 comments

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 list of list, latest being coordinate.

Here is my current progress :

Client:

points = [[1, 2, 3], [4, 5, 6]]

bundle = []

for i, msg in `enumerate(points):
    tag = ('/' + str(i)).encode('utf-8')
    bundle.append([tag, msg])

client.send_bundle(bundle)

Server:

def on_tag(*args):
    print(args)

for i in range(10):
    tag = ('/' + str(i)).encode('utf-8')
    server.bind(tag, on_tag, get_adress=True)

Is it good so far ? Thanks you for your feedback.

sergeLabo avatar Aug 11 '21 08:08 sergeLabo

Really sorry for not answering before. A bundle is a succession of messages, it's up to you to decide if you want to call the same endpoint multiple times with a different list (and maybe a list index to indicate which list it is), or a different end point for each list in the list of list. Here your example would send to a different endpoint, which looks ok to me, but it's just one ways to use bundles.

tshirtman avatar Oct 03 '21 17:10 tshirtman