Re: [Discuss-gnuradio] Reading ZMQ messages in Python

2015-09-08 Thread Stephen Harrison
try struct.unpack() On Tue, Sep 8, 2015 at 11:17 AM, Daniel Mazzer wrote: > Hello, > > I have a flowgraph that send ZMQ PUB messages generated by a custom > OOT block. The messages transmitted by GNURadio ZMQ PUB block are > received by a Python application, using a standard

Re: [Discuss-gnuradio] Reading ZMQ messages in Python

2015-09-08 Thread Marcus Müller
Hi, the "right way" to do this is use PMT's python bindings: import pmt s='\n\x08\x00\x00\x00\x01\x01\x00?\xe4\xbe\x83\x00\x00\x00\x00' p = pmt.deserialize_str(s) python_numpy_array = pmt.pmt_to_python.pmt_to_python(p) Best regards, Marcus On 08.09.2015 20:17, Daniel Mazzer wrote: > Hello, >

Re: [Discuss-gnuradio] Reading ZMQ messages in Python

2015-09-08 Thread Daniel Mazzer
Hi Marcus, I was missing the "deserialize" call. I'll try it tomorrow. Thank you. Regards, Daniel On Tue, Sep 8, 2015 at 6:28 PM, Marcus Müller wrote: > Hi, > > the "right way" to do this is use PMT's python bindings: > > import pmt >

[Discuss-gnuradio] Reading ZMQ messages in Python

2015-09-08 Thread Daniel Mazzer
Hello, I have a flowgraph that send ZMQ PUB messages generated by a custom OOT block. The messages transmitted by GNURadio ZMQ PUB block are received by a Python application, using a standard ZMQ Library. [custom_oot_block] ---(GNURadio message)---> [ZMQ Publisher] .(ethernet).> [Python