Metadata-Version: 1.1
Name: hermes-zmq
Version: 1.1.2
Summary: ZMQ-based framework for building simple Pub-Sub Systems, written in Python 3.
Home-page: UNKNOWN
Author: Nils Diefenbach
Author-email: 23okrs20+github@mykolab.com
License: UNKNOWN
Description: +---------+----------------+-------------------+----------------+
        |Branch   | Build Status   |   Coverage        | Documentation  |
        +=========+================+===================+================+
        |`master` | |master_build| | |master_coverage| | |master_docs|  |
        +---------+----------------+-------------------+----------------+
        |`dev`    | |dev_build|    | |dev_coverage|    |  |dev_docs|    |
        +---------+----------------+-------------------+----------------+
        
        
        
        Hermes
        ======
        ZMQ-based framework for building simple Pub-Sub Systems, written in Python 3.
        
        It offers thread-based wrappers for zmq's SUB and PUB sockets, a pre-configured proxy device
        and a Node class to pull it all together.
        
        Hermes allows you to quickly build a cluster of publishers which can support arbitrary numbers
        of subscribers via single address.
        
        Motivation
        ==========
        Hermes is the base for our Crypto trading system, and allows us to set up new node clusters in a
        convenient and maintainable way, without our contributors having to worry too much about the inner
        workings of ZMQ.
        
        We liked it, so we decided to publish it!
        
        
        Usage
        =====
        
        install via ``pip install hermes-zmq`` and import with ``import hermes``.
        
        
        .. |master_build| image:: https://travis-ci.org/nlsdfnbch/hermes.svg?branch=master
            :target: https://travis-ci.org/nlsdfnbch/hermes
        
        .. |master_coverage| image:: https://coveralls.io/repos/github/nlsdfnbch/hermes/badge.svg?branch=master
            :target: https://coveralls.io/github/nlsdfnbch/hermes?branch=master
        
        .. |dev_build| image:: https://travis-ci.org/nlsdfnbch/hermes.svg?branch=dev
            :target: https://travis-ci.org/nlsdfnbch/hermes             
        
        .. |dev_coverage| image:: https://coveralls.io/repos/github/nlsdfnbch/hermes/badge.svg?branch=dev
            :target: https://coveralls.io/github/nlsdfnbch/hermes?branch=dev
        
        
        .. |master_docs| image:: https://readthedocs.org/projects/hermes-framework/badge/?version=latest
            :target: http://hermes-framework.readthedocs.io/en/latest/?badge=latest
        
        .. |dev_docs| image:: https://readthedocs.org/projects/hermes-framework/badge/?version=dev
            :target: http://hermes-framework.readthedocs.io/en/dev/?badge=dev
        
Keywords: zmq pubsub ipc distributed messaging
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Office/Business :: Financial :: Investment
