-
-
Save heysamtexas/c0f0700c83c5b613eea6d8d96468d30c to your computer and use it in GitHub Desktop.
Python ZeroMQ pub/sub example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time.sleep | |
import zmq | |
context = zmq.Context() | |
socket = context.socket(zmq.PUB) | |
socket.bind('tcp://127.0.0.1:2000') | |
# Allow clients to connect before sending data | |
sleep(10) | |
socket.send_pyobj({1:[1,2,3]}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import zmq | |
context = zmq.Context() | |
socket = context.socket(zmq.SUB) | |
# We can connect to several endpoints if we desire, and receive from all. | |
socket.connect('tcp://127.0.0.1:2000') | |
# We must declare the socket as of type SUBSCRIBER, and pass a prefix filter. | |
# Here, the filter is the empty string, wich means we receive all messages. | |
# We may subscribe to several filters, thus receiving from all. | |
socket.setsockopt(zmq.SUBSCRIBE, '') | |
message = socket.recv_pyobj() | |
print message.get(1)[2] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment