3.3.1
celery, task queue, job queue, asynchronous, rabbitmq, amqp, redis, python, django, webhooks, queue, distributed
–
Warning
THIS PROJECT IS ONLY REQUIRED IF YOU WANT TO USE DJANGO RESULT BACKEND AND ADMIN INTEGRATION
Please follow the new tutorial at:
http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html
django-celery provides Celery integration for Django; Using the Django ORM and cache backend for storing results, autodiscovery of task modules for applications listed in INSTALLED_APPS, and more.
Using django-celeryTo enable django-celery for your project you need to add djcelery to INSTALLED_APPS:
INSTALLED_APPS += ("djcelery", )
then add the following lines to your settings.py:
import djcelery djcelery.setup_loader()
Everything works the same as described in the Celery User Manual, except you need to invoke the programs through manage.py:
Program
Replace with
celery
python manage.py celery
celery worker
python manage.py celery worker
celery beat
python manage.py celery beat
celery ...
python manage.py celery ...
The other main difference is that configuration values are stored in your Django projects’ settings.py module rather than in celeryconfig.py.
If you’re trying celery for the first time you should start by reading Getting started with django-celery
Special note for mod_wsgi usersIf you’re using mod_wsgi to deploy your Django application you need to include the following in your .wsgi module:
import djcelery djcelery.setup_loader()Documentation
The Celery User Manual contains user guides, tutorials and an API reference. It also has a dedicated subsection about the Django integration.
InstallationYou can install django-celery either via the Python Package Index (PyPI) or from source.
To install using pip,:
$ pip install django-celery
To install using easy_install,:
$ easy_install django-celery
You will then want to create the necessary tables. If you generating schema migrations, you’ll want to run:
$ python manage.py migrate djceleryDownloading and installing from source
Download the latest version of django-celery from http://pypi.python.org/pypi/django-celery/
You can install it by doing the following,:
$ tar xvfz django-celery-0.0.0.tar.gz $ cd django-celery-0.0.0 # python setup.py install # as rootUsing the development version
You can clone the git repository by doing the following:
$ git clone git://github.com/celery/django-celery.gitGetting Help Mailing list
For discussions about the usage, development, and future of celery, please join the celery-users mailing list.
IRCCome chat with us on IRC. The #celery channel is located at the Freenode network.
Bug trackerIf you have any suggestions, bug reports or annoyances please report them to our issue tracker at http://github.com/celery/django-celery/issues/
Wikihttp://wiki.github.com/celery/celery/
ContributingDevelopment of django-celery happens at Github: http://github.com/celery/django-celery
You are highly encouraged to participate in the development. If you don’t like Github (for some reason) you’re welcome to send regular patches.
LicenseThis software is licensed under the New BSD License. See the LICENSE file in the top distribution directory for the full license text.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4