Metadata-Version: 1.1
Name: esub
Version: 0.0.5
Summary: esub python client library
Home-page: https://github.com/ccpgames/esub-client/
Author: Adam Talsma
Author-email: se-adam@talsma@ccpgames.com
License: UNKNOWN
Download-URL: https://github.com/ccpgames/esub-client/
Description: # esub python client library
        
        esub is a super lightweight micro message passing service,
        this is a python client library to connect to an esub node
        
        for more details about esub, see its repo: https://github.com/ccpgames/esub
        
        
        ## examples
        
        
        # subscribing
        
        ```python
        # this will block until fulfilled or canceled
        print(esub.sub("some_key", token="secret"))
        ```
        
        # replying
        
        ```python
        # also blocking, but should be a fast response
        esub.rep("some_key", "some data", token="secret")
        ```
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
