Metadata-Version: 1.1
Name: zmqpubsub
Version: 0.0.8
Summary: Python package to create publishers & subscribers to send JSON payloads over ZMQ.
Home-page: UNKNOWN
Author: Vincent Charpentier
Author-email: vincent.charpentier@imec.be
License: MIT
Description: # zmqpubsubdemo
        
        Python publisher & subscriber to send JSON payloads over ZMQ.
        
        ## Installation
        1. Install pip3
        - `sudo apt-get update`
        - `sudo apt-get -y install python3-pip`
        2. Install pyzmq
        - `sudo pip3 install pyzmq`
        
        ### Create a Publisher:
        - `zmqpubsub.Publisher(ip='x.x.x.x', port='yyyy')`
        
        ### Create a Subscriber
        - `zmqpubsub.Subscriber(ip='x.x.x.x', port='yyyy')`
        
        
        
        
        Change Log
        ==========
        
        0.0.1 (05/05/2022)
        ------------------
        - First Release
        
        0.0.2 (20/07/2022)
        ------------------
        - Added the unsubscribe option.
        
        0.0.3 (20/07/2022)
        ------------------
        - Implemented try catch statement
        
        0.0.8 (21/10/2022)
        ------------------
        - fixed an issue such that it is possible now to subscribe to many topics on the same subscriber.
Keywords: zmq,publisher,subscriber
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
