Metadata-Version: 1.0
Name: routines
Version: 0.0.2
Summary: Routines is a simple package that provides a single decorator for you to mark functions as tasks (routines) that should be executed on a regular schedule.
Home-page: https://github.com/JonnyFunFun/routines
Author: Jonathan Enzinna
Author-email: jonnyfunfun@gmail.com
License: GPL
Description: .. include globals.rst
                
        Welcome to Routines!
        ********************
                
        Routines is a simple package that provides a single decorator for you to mark 
        functions as tasks (routines) that should be executed on a regular schedule.
                        
        To use, simply do the following::
        	
        	from routines import Routine
        	
        	@Routine(60)
        	def my_routine_task(b):
        		print b
        	
        	my_routine_task('Hello!')
        	my_routine_task('Yay!')
        	
        As a result of the above, "Hello!" and "Yay!" will print every 60 seconds.
Keywords: recurrence reoccuring routines routine tasks
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
