Metadata-Version: 1.1
Name: django-command-scheduler
Version: 0.1.0
Summary: Runs your Django management commands via cron and gives you some success and log infos in admin.
Home-page: https://github.com/kraiz/django-command-scheduler
Author: Lars Kreisz
Author-email: der.kraiz@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: about
        =====
        Runs your Django management commands via cron and gives you some success and
        log infos in admin.
        
        features
        --------
        * Single entry in crontab that forks new processes for scheduled commands
        * Define which management command when to run via django admin
        * Logs success state, stdout and stderr into database log
        
        setup
        =====
        Install via pip::
        
            pip install django-command-scheduler
        
        Add to `INSTALLED_APPS`::
        
            INSTALLED_APPS = (
                ...
                'command_scheduler',
            )
        
        Run `migrate`::
        
            python manage.py migrate
        
        Insert command a single line into crontab::
        
            * * * * * /path/to/possibly/virtualenv/bin/python /path/to/manage.py runcommands
        
        Now go to admin site and add commands!
        
        todos
        =====
        * Tests (!)
        * Notentifications on error
        
        license
        =======
        MIT-License, see LICENSE file.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: System :: Installation/Setup
