Metadata-Version: 2.1
Name: zeromessage
Version: 0.2
Summary: Lightweight ROS-like pub-sub tool utilizing ZeroMQ
Home-page: https://github.com/yodahuang/zero-message
Author: Yanda Huang
Author-email: yord.huang@gmail.com
License: MIT
Description: ## Zero Message
        
        [![Documentation Status](https://readthedocs.org/projects/zero-message/badge/?version=latest)](https://zero-message.readthedocs.io/en/latest/?badge=latest)
        
        
        
        *Zero Message* is a lightweight ROS-like pub-sub tool for Python 3.4+.
        
        - Provides a wrapper around [ZeroMQ](http://zeromq.org) socket.
        - Communicate between any Python program using publisher-subscriber protocol
        
        ### Installation
        
        ```
        pip install zeromessage
        ```
        
        ### Quick start
        
        Refer to the `/examples`:
        
        ```python
        # listener.py
        import asyncio
        from zeromessage import EnvelopSocket
        
        socket = EnvelopSocket.as_subscriber()
        
        def doSomething(msg):
            print(msg)
        
        subscribe_coroutine = socket.subscribe('test', doSomething)
        
        asyncio.get_event_loop().run_until_complete(subscribe_coroutine())
        ```
        
        ```python
        # talker.py
        import time
        from zeromessage import EnvelopSocket
        
        socket = EnvelopSocket.as_publisher()
        
        while True:
            socket.publish('test', {
                'data': [1, 2, 3]
            })
            time.sleep(1)
        ```
        
        ### Command Line tools
        
        A `rostopic` like tool is provided.
        
        ```
        zerotopic echo -- --help
        ```
        
        ### API Document
        
        [zero-message.readthedocs.io](zero-message.readthedocs.io)
Platform: UNKNOWN
Description-Content-Type: text/markdown
