├── .gitignore ├── AUTHORS ├── Changelog ├── FAQ ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── README ├── README.rst ├── THANKS ├── TODO ├── bin └── djcelerymon ├── contrib ├── release │ ├── doc4allmods │ ├── flakeplus.py │ ├── removepyc.sh │ ├── sphinx-to-rst.py │ └── verify-reference-index.sh ├── requirements └── supervisord │ ├── celerybeat.conf │ └── celeryd.conf ├── djcelery ├── __init__.py ├── admin.py ├── admin_utils.py ├── app.py ├── backends │ ├── __init__.py │ ├── cache.py │ └── database.py ├── contrib │ ├── __init__.py │ └── test_runner.py ├── humanize.py ├── loaders.py ├── management │ ├── __init__.py │ ├── base.py │ └── commands │ │ ├── __init__.py │ │ ├── camqadm.py │ │ ├── celerybeat.py │ │ ├── celerycam.py │ │ ├── celeryctl.py │ │ ├── celeryd.py │ │ ├── celeryd_detach.py │ │ ├── celeryd_multi.py │ │ ├── celeryev.py │ │ ├── celerymon.py │ │ └── djcelerymon.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_v25_changes.py │ └── __init__.py ├── models.py ├── mon.py ├── monproj │ ├── __init__.py │ └── urls.py ├── picklefield.py ├── schedulers.py ├── snapshot.py ├── templates │ ├── admin │ │ └── djcelery │ │ │ └── change_list.html │ └── djcelery │ │ └── confirm_rate_limit.html ├── tests │ ├── __init__.py │ ├── req.py │ ├── test_backends │ │ ├── __init__.py │ │ ├── test_cache.py │ │ └── test_database.py │ ├── test_conf.py │ ├── test_discovery.py │ ├── test_loaders.py │ ├── test_models.py │ ├── test_schedulers.py │ ├── test_snapshot.py │ ├── test_views.py │ ├── test_worker_job.py │ └── utils.py ├── transport │ └── __init__.py ├── urls.py ├── utils.py └── views.py ├── docs ├── .static │ └── .keep ├── .templates │ ├── page.html │ ├── sidebarintro.html │ └── sidebarlogo.html ├── Makefile ├── __init__.py ├── _ext │ ├── applyxrefs.py │ └── literals_to_xrefs.py ├── _theme │ └── celery │ │ ├── static │ │ └── celery.css_t │ │ └── theme.conf ├── changelog.rst ├── conf.py ├── cookbook │ ├── index.rst │ └── unit-testing.rst ├── faq.rst ├── getting-started │ ├── first-steps-with-django.rst │ └── index.rst ├── index.rst ├── introduction.rst ├── reference │ ├── djcelery.app.rst │ ├── djcelery.backends.cache.rst │ ├── djcelery.backends.database.rst │ ├── djcelery.contrib.test_runner.rst │ ├── djcelery.humanize.rst │ ├── djcelery.loaders.rst │ ├── djcelery.managers.rst │ ├── djcelery.models.rst │ ├── djcelery.schedulers.rst │ ├── djcelery.snapshot.rst │ ├── djcelery.urls.rst │ ├── djcelery.utils.rst │ ├── djcelery.views.rst │ └── index.rst └── settings.py ├── examples └── demoproject │ ├── demoapp │ ├── __init__.py │ ├── models.py │ ├── tasks.py │ ├── tests.py │ └── views.py │ ├── demoproject │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── manage.py ├── locale ├── en │ └── LC_MESSAGES │ │ └── django.po └── es │ └── LC_MESSAGES │ ├── django.mo │ └── django.po ├── pavement.py ├── requirements ├── default.txt ├── docs.txt └── test.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── manage.py ├── settings.py ├── someapp │ ├── __init__.py │ ├── models.py │ ├── tasks.py │ ├── tests.py │ └── views.py ├── someappwotask │ ├── __init__.py │ ├── models.py │ └── views.py └── urls.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/AUTHORS -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/Changelog -------------------------------------------------------------------------------- /FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/FAQ -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/README.rst -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/TODO -------------------------------------------------------------------------------- /bin/djcelerymon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/bin/djcelerymon -------------------------------------------------------------------------------- /contrib/release/doc4allmods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/contrib/release/doc4allmods -------------------------------------------------------------------------------- /contrib/release/flakeplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/contrib/release/flakeplus.py -------------------------------------------------------------------------------- /contrib/release/removepyc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/contrib/release/removepyc.sh -------------------------------------------------------------------------------- /contrib/release/sphinx-to-rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/contrib/release/sphinx-to-rst.py -------------------------------------------------------------------------------- /contrib/release/verify-reference-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/contrib/release/verify-reference-index.sh -------------------------------------------------------------------------------- /contrib/requirements: -------------------------------------------------------------------------------- 1 | ../requirements -------------------------------------------------------------------------------- /contrib/supervisord/celerybeat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/contrib/supervisord/celerybeat.conf -------------------------------------------------------------------------------- /contrib/supervisord/celeryd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/contrib/supervisord/celeryd.conf -------------------------------------------------------------------------------- /djcelery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/__init__.py -------------------------------------------------------------------------------- /djcelery/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/admin.py -------------------------------------------------------------------------------- /djcelery/admin_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/admin_utils.py -------------------------------------------------------------------------------- /djcelery/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/app.py -------------------------------------------------------------------------------- /djcelery/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djcelery/backends/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/backends/cache.py -------------------------------------------------------------------------------- /djcelery/backends/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/backends/database.py -------------------------------------------------------------------------------- /djcelery/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djcelery/contrib/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/contrib/test_runner.py -------------------------------------------------------------------------------- /djcelery/humanize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/humanize.py -------------------------------------------------------------------------------- /djcelery/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/loaders.py -------------------------------------------------------------------------------- /djcelery/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djcelery/management/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/management/base.py -------------------------------------------------------------------------------- /djcelery/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djcelery/management/commands/camqadm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/management/commands/camqadm.py -------------------------------------------------------------------------------- /djcelery/management/commands/celerybeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/management/commands/celerybeat.py -------------------------------------------------------------------------------- /djcelery/management/commands/celerycam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/management/commands/celerycam.py -------------------------------------------------------------------------------- /djcelery/management/commands/celeryctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/management/commands/celeryctl.py -------------------------------------------------------------------------------- /djcelery/management/commands/celeryd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/management/commands/celeryd.py -------------------------------------------------------------------------------- /djcelery/management/commands/celeryd_detach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/management/commands/celeryd_detach.py -------------------------------------------------------------------------------- /djcelery/management/commands/celeryd_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/management/commands/celeryd_multi.py -------------------------------------------------------------------------------- /djcelery/management/commands/celeryev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/management/commands/celeryev.py -------------------------------------------------------------------------------- /djcelery/management/commands/celerymon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/management/commands/celerymon.py -------------------------------------------------------------------------------- /djcelery/management/commands/djcelerymon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/management/commands/djcelerymon.py -------------------------------------------------------------------------------- /djcelery/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/managers.py -------------------------------------------------------------------------------- /djcelery/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/migrations/0001_initial.py -------------------------------------------------------------------------------- /djcelery/migrations/0002_v25_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/migrations/0002_v25_changes.py -------------------------------------------------------------------------------- /djcelery/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djcelery/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/models.py -------------------------------------------------------------------------------- /djcelery/mon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/mon.py -------------------------------------------------------------------------------- /djcelery/monproj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djcelery/monproj/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/monproj/urls.py -------------------------------------------------------------------------------- /djcelery/picklefield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/picklefield.py -------------------------------------------------------------------------------- /djcelery/schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/schedulers.py -------------------------------------------------------------------------------- /djcelery/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/snapshot.py -------------------------------------------------------------------------------- /djcelery/templates/admin/djcelery/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/templates/admin/djcelery/change_list.html -------------------------------------------------------------------------------- /djcelery/templates/djcelery/confirm_rate_limit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/templates/djcelery/confirm_rate_limit.html -------------------------------------------------------------------------------- /djcelery/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djcelery/tests/req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/tests/req.py -------------------------------------------------------------------------------- /djcelery/tests/test_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djcelery/tests/test_backends/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/tests/test_backends/test_cache.py -------------------------------------------------------------------------------- /djcelery/tests/test_backends/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/tests/test_backends/test_database.py -------------------------------------------------------------------------------- /djcelery/tests/test_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/tests/test_conf.py -------------------------------------------------------------------------------- /djcelery/tests/test_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/tests/test_discovery.py -------------------------------------------------------------------------------- /djcelery/tests/test_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/tests/test_loaders.py -------------------------------------------------------------------------------- /djcelery/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/tests/test_models.py -------------------------------------------------------------------------------- /djcelery/tests/test_schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/tests/test_schedulers.py -------------------------------------------------------------------------------- /djcelery/tests/test_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/tests/test_snapshot.py -------------------------------------------------------------------------------- /djcelery/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/tests/test_views.py -------------------------------------------------------------------------------- /djcelery/tests/test_worker_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/tests/test_worker_job.py -------------------------------------------------------------------------------- /djcelery/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/tests/utils.py -------------------------------------------------------------------------------- /djcelery/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/transport/__init__.py -------------------------------------------------------------------------------- /djcelery/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/urls.py -------------------------------------------------------------------------------- /djcelery/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/utils.py -------------------------------------------------------------------------------- /djcelery/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/djcelery/views.py -------------------------------------------------------------------------------- /docs/.static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/.templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/.templates/page.html -------------------------------------------------------------------------------- /docs/.templates/sidebarintro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/.templates/sidebarintro.html -------------------------------------------------------------------------------- /docs/.templates/sidebarlogo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/.templates/sidebarlogo.html -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_ext/applyxrefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/_ext/applyxrefs.py -------------------------------------------------------------------------------- /docs/_ext/literals_to_xrefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/_ext/literals_to_xrefs.py -------------------------------------------------------------------------------- /docs/_theme/celery/static/celery.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/_theme/celery/static/celery.css_t -------------------------------------------------------------------------------- /docs/_theme/celery/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | stylesheet = celery.css 4 | 5 | [options] 6 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | ../Changelog -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/cookbook/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/cookbook/index.rst -------------------------------------------------------------------------------- /docs/cookbook/unit-testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/cookbook/unit-testing.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- 1 | ../FAQ -------------------------------------------------------------------------------- /docs/getting-started/first-steps-with-django.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/getting-started/first-steps-with-django.rst -------------------------------------------------------------------------------- /docs/getting-started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/getting-started/index.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/introduction.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.app.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.backends.cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.backends.cache.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.backends.database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.backends.database.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.contrib.test_runner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.contrib.test_runner.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.humanize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.humanize.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.loaders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.loaders.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.managers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.managers.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.models.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.schedulers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.schedulers.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.snapshot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.snapshot.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.urls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.urls.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.utils.rst -------------------------------------------------------------------------------- /docs/reference/djcelery.views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/djcelery.views.rst -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/docs/settings.py -------------------------------------------------------------------------------- /examples/demoproject/demoapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/demoproject/demoapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/examples/demoproject/demoapp/models.py -------------------------------------------------------------------------------- /examples/demoproject/demoapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/examples/demoproject/demoapp/tasks.py -------------------------------------------------------------------------------- /examples/demoproject/demoapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/examples/demoproject/demoapp/tests.py -------------------------------------------------------------------------------- /examples/demoproject/demoapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/examples/demoproject/demoapp/views.py -------------------------------------------------------------------------------- /examples/demoproject/demoproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/demoproject/demoproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/examples/demoproject/demoproject/settings.py -------------------------------------------------------------------------------- /examples/demoproject/demoproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/examples/demoproject/demoproject/urls.py -------------------------------------------------------------------------------- /examples/demoproject/demoproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/examples/demoproject/demoproject/wsgi.py -------------------------------------------------------------------------------- /examples/demoproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/examples/demoproject/manage.py -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /pavement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/pavement.py -------------------------------------------------------------------------------- /requirements/default.txt: -------------------------------------------------------------------------------- 1 | celery>=2.5.2 2 | -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/someapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/someapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/tests/someapp/models.py -------------------------------------------------------------------------------- /tests/someapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/tests/someapp/tasks.py -------------------------------------------------------------------------------- /tests/someapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/tests/someapp/tests.py -------------------------------------------------------------------------------- /tests/someapp/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /tests/someappwotask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/someappwotask/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/tests/someappwotask/models.py -------------------------------------------------------------------------------- /tests/someappwotask/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ask/django-celery/HEAD/tox.ini --------------------------------------------------------------------------------