Metadata-Version: 1.1
Name: stampede
Version: 0.0.1
Summary: Event-loop based, miniature job queue and worker that runs the task in a subprocess (via fork).
Home-page: https://github.com/ionelmc/python-stampede
Author: Ionel Cristian Mărieș
Author-email: contact@ionelmc.ro
License: BSD
Description: ========================
            python-stampede
        ========================
        
        .. image:: https://secure.travis-ci.org/ionelmc/python-stampede.png?branch=master
            :alt: Build Status
            :target: http://travis-ci.org/ionelmc/python-stampede
        
        .. image:: https://coveralls.io/repos/ionelmc/python-stampede/badge.png?branch=master
            :alt: Coverage Status
            :target: https://coveralls.io/r/ionelmc/python-stampede
        
        .. image:: https://pypip.in/d/python-stampede/badge.png
            :alt: PYPI Package
            :target: https://pypi.python.org/pypi/python-stampede
        
        .. image:: https://pypip.in/v/python-stampede/badge.png
            :alt: PYPI Package
            :target: https://pypi.python.org/pypi/python-stampede
        
        Event-loop based, miniature job queue and worker that runs the task in a subprocess (via fork).
        
        Usage
        =====
        
        ::
        
            class MacLeod(StampedeWorker):
                socket_name = 'test.sock'
        
                def do_work(self, workspace_name):
                    import time
                    time.sleep(18)
        
            man = MacLeod()
            man.run()
        
        Features
        ========
        
        * TODO
        
        Implementation
        ==============
        
        TODO
        
        TODO
        ====
        
        * ???
        
        Requirements
        ============
        
        :OS: Linux
        :Runtime: Python 2.6, 2.7, 3.2, 3.3 and PyPy
        :Packages: python-signalfd
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
