Metadata-Version: 1.1
Name: nucosMQ
Version: 0.0.8
Summary: nucosMQ - a pure python message module
Home-page: https://github.com/DocBO/nucosMQ
Author: Oliver Braun
Author-email: oliver.braun@nucos.de
License: MIT
Download-URL: https://github.com/DocBO/nucosMQ/tarball/0.0.1
Description: nucosMQ
        =======
        
        *nucosMQ* is a python messaging module (in the sense of zeroMQ) written
        in pure Python. We are aware of other projects like *snakeMQ* but we
        were not able to produce reasonable results with that, since we depend
        in our related projects on massive threading.
        
        The underlying protocoll is *tcp* and as an alternative *udp* yet not
        very far implemented.. The Communication is thread safe, so it may be
        used together with whatever GUI-Library. The module is light-weighted,
        pure python and ready to use.
        
        The project is in alpha stage: every usage is on your own
        responsibility.
        
        *nucosMQ* implements two kind of connections: server-client connection
        and link-connection. The server accepts many clients, the link is a
        one-to-one connection. The connections may be established also with your
        individual authentification method, which can be integrated easily (see
        examples).
        
        A publish/subscribe logic is implemented, where clients can subscribe to
        a topic and the server acts as a broker for that topology.
        
        Install
        =======
        
        pip install nucosMQ
        
        Documentation
        =============
        
        https://pythonhosted.org/nucosMQ
        
        Recommended test runner
        =======================
        
        nose2 --plugin nose2.plugins.junitxml --junit-xml
        
Keywords: message queue zeroMQ snakeMQ
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
