Metadata-Version: 1.1
Name: dj-tasks
Version: 0.1.0
Summary: A django app to run a collection of tasks in a management command.
Home-page: https://github.com/cfc603/dj-tasks
Author: Trevor Watson
Author-email: wtrevor162@gmail.com
License: MIT
Description: =============================
        dj-tasks
        =============================
        
        .. image:: https://badge.fury.io/py/dj-tasks.svg
            :target: https://badge.fury.io/py/dj-tasks
        
        .. image:: https://travis-ci.org/cfc603/dj-tasks.svg?branch=master
            :target: https://travis-ci.org/cfc603/dj-tasks
        
        .. image:: https://codecov.io/gh/cfc603/dj-tasks/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/cfc603/dj-tasks
        
        A django app to run a collection of tasks in a management command.
        
        Documentation
        -------------
        
        The full documentation is at https://dj-tasks.readthedocs.io.
        
        Quickstart
        ----------
        
        Install dj-tasks::
        
            pip install dj-tasks
        
        Add it to your ``INSTALLED_APPS``:
        
        .. code-block:: python
        
            # project/settings.py
            INSTALLED_APPS = [
                ...
                'dj_tasks',
                ...
            ]
        
        Create a task:
        
        .. code-block:: python
        
            # your_app/tasks.py
            from dj_tasks.tasks import Task
        
        
            class YourTask(Task):
        
                name = "Your Task"
                frequency = 60
        
                def run(self):
                    print("Your custom code...")
        
        Add to your ``DJTASKS_TASKS`` settings:
        
        .. code-block:: python
        
            # project/settings.py
            DJTASKS_TAKS = [
                "your_app.tasks.Task",
            ]
        
        
        Running Tests
        -------------
        
        Does the code actually work?
        
        ::
        
            source <YOURVIRTUALENV>/bin/activate
            (myenv) $ pip install tox
            (myenv) $ tox
        
        Credits
        -------
        
        Tools used in rendering this package:
        
        *  Cookiecutter_
        *  `cookiecutter-djangopackage`_
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage
        
        
        
        
        History
        -------
        
        0.1.0 (2020-06-05)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: dj-tasks
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
