Metadata-Version: 1.1
Name: zmqpubsub
Version: 0.0.3
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)
        0.0.2 (20/07/2022)
        0.0.3 (20/07/2022)
        ------------------
        - First Release
        - Added the unsubscribe option
        - implemented try catch statement
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
