Metadata-Version: 1.1
Name: redisjobs
Version: 0.3.2
Summary: A Python interface to the Jobs scheduler.
Home-page: https://github.com/debrouwere/jobs.py
Author: Stijn Debrouwere
Author-email: stijn@debrouwere.org
License: ISC
Download-URL: https://github.com/debrouwere/jobs.py/tarball/master
Description: Jobs
        ====
        
        This is a Python client library for interacting with the
        `Jobs <https://github.com/debrouwere/jobs>`__ scheduler.
        
        Install with pip:
        
        .. code:: shell
        
            pip install redisjobs
        
        .. code:: python
        
            import redisjobs as jobs
        
            # if Redis is not running on your local machine, 
            # specify Redis host and port, otherwise you 
            # can initialize the object without arguments
            board = jobs.Board(host='127.0.0.1', port=6379)
            schedule = {'minutes': 5}
            board.put('my job', 'shell', 'echo "Hello world!"', schedule)
            print board.get('my job')
        
        Take a look at ``jobs/__init__.py`` for more information.
        
Keywords: scheduler scheduling jobs tasks asynchronous
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
