Metadata-Version: 1.1
Name: postboy
Version: 0.3.3
Summary: simple distributed emailing system.
Home-page: http://github.com/mosquito/postboy
Author: Dmitry Orlov <me@mosquito.su>
Author-email: me@mosquito.su
License: MIT
Description: PostBoy
        =======
        
        Simple distributed emailing system. Consists of broker (based on pyzmq) and worker.
        
        Installation
        ++++++++++++
        
                pip install postboy
        
        Using
        +++++
        
            /usr/bin/postboy-broker --debug
        
            /usr/bin/postboy-worker --debug
        
        Then try to use it.
            >>> from postboy import Email, BrokerHandler
            >>> broker = BrokerHandler()
            >>> email = Email(sender='info@test.name', recipient='user@localhost', subject='Test')
            >>> broker.store(email.dumps())
            1 # <= return task id
        
Platform: all
Classifier: Environment :: Console
Classifier: Programming Language :: Python
Requires: pika
