Metadata-Version: 1.0
Name: django-future
Version: 0.1
Summary: Scheduled jobs in Django
Home-page: http://github.com/shrubberysoft/django-future
Author: Shrubbery Software
Author-email: team@shrubberysoft.com
License: UNKNOWN
Description: -----
        About
        -----
        
        **django_future** is a tool for scheduling jobs on given times.
        
        
        -----
        Usage
        -----
        
        First of all, you need to have **django_future** installed; for your
        convenience, recent versions should be available from PyPI.
        
        Use the ``django_future.schedule_job`` function to schedule new jobs:
        
        >>> from django_scheduledjobs import schedule_job
        >>> import datetime
        >>> schedule_job(datetime.datetime(2010, 10, 10),
        ...              'myproject.myapp.handlers.dosomething')
        
        To run outstanding jobs, use the Django management command 'runscheduledjobs'.
        
        --------
        Feedback
        --------
        
        There is a `home page <http://github.com/shrubberysoft/django_future>`_ with
        instructions on how to access the code repository.
        
        Send feedback and suggestions to team@shrubberysoft.com.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
