Metadata-Version: 1.1
Name: msgflo
Version: 0.0.14
Summary: Simple message queueing for AMQP and MQTT
Home-page: https://msgflo.org
Author: Jon Nordby
Author-email: jononor@gmail.com
License: MIT License
Description: # msgflo-python: Python participant support for MsgFlo
        
        [MsgFlo](https://github.com/msgflo/msgflo) is a distributed, polyglot FBP (flow-based-programming) runtime.
        It integrates with other FBP tools like the [Flowhub](http://flowhub.io) visual programming IDE.
        This library makes it easy to create MsgFlo participants in Python.
        
        msgflo-python currently supports Python 2 and is built on top of [gevent](http://www.gevent.org/).
        It uses [Haigha](https://github.com/agoragames/haigha) for AMQP support
        and [Eclipse Paho](https://eclipse.org/paho/clients/python/) for MQTT.
        
        ## Status
        
        *Experimental*
        
        * Basic support for setting up and running Participants
        * Support for AMQP/RabbitMQ and MQTT brokers
        
        ## License
        
        MIT, see [./LICENSE](./LICENSE)
        
        ## Installing
        
        Get it from [PyPi](http://pypi.python.org/)
        
            pip install msgflo --user
        
        ## Usage
        
        See [./examples/repeat.py](./examples/repeat.py)
        
            wget https://github.com/msgflo/msgflo-python/raw/master/examples/repeat.py
            # Set address of broker to connect to. Can also be amqp://...
            export MSGFLO_BROKER=mqtt://localhost
            python ./repeat.py
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2.6
Classifier: Topic :: Internet :: WWW/HTTP
