Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install django-celery

How to install django-celery

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install django-celery
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
3.0.21
3.0.23Never BuiltWhy not?
3.0.21 Available View build log
3.0.17 Available View build log
3.0.11 Available View build log
3.0.9 Available View build log
2.5.5 Available View build log
2.5.4 Available View build log
2.5.1 Available View build log
2.5.0 Available View build log
2.4.2 Available View build log
2.4.1 Available View build log
2.4.0 Available View build log
2.3.3 Available View build log
2.3.2 Available View build log
2.3.1 Available View build log
2.3.0 Available View build log
2.2.4 Available View build log
2.2.3 Available View build log
2.2.2 Available View build log
2.2.1 Available View build log
2.1.4 Available View build log
2.1.2 Available View build log
2.1.1 Available View build log
2.1.0 Available View build log
2.0.3 Available View build log
2.0.2 Available View build log
Windows (64-bit)
3.0.21
3.0.23Never BuiltWhy not?
3.0.21 Available View build log
3.0.17 Available View build log
3.0.11 Available View build log
2.5.5 Available View build log
2.5.4 Available View build log
2.5.1 Available View build log
2.5.0 Available View build log
2.4.2 Available View build log
2.4.1 Available View build log
2.4.0 Available View build log
2.3.3 Available View build log
2.3.2 Available View build log
2.3.1 Available View build log
2.3.0 Available View build log
2.2.4 Available View build log
2.2.3 Available View build log
2.2.2 Available View build log
2.2.1 Available View build log
2.1.4 Available View build log
2.1.2 Available View build log
2.1.1 Available View build log
2.1.0 Available View build log
2.0.3 Available View build log
2.0.2 Available View build log
Mac OS X (10.5+)
3.0.21
3.0.23Never BuiltWhy not?
3.0.21 Available View build log
3.0.17 Available View build log
3.0.11 Available View build log
3.0.9 Available View build log
2.5.5 Available View build log
2.5.4 Available View build log
2.5.1 Available View build log
2.5.0 Available View build log
2.4.2 Available View build log
2.4.1 Available View build log
2.4.0 Available View build log
2.3.3 Available View build log
2.3.2 Available View build log
2.3.1 Available View build log
2.3.0 Available View build log
2.2.4 Available View build log
2.2.3 Available View build log
2.2.2 Available View build log
2.2.1 Available View build log
2.1.4 Available View build log
2.1.2 Available View build log
2.1.1 Available View build log
2.1.0 Available View build log
2.0.3 Available View build log
2.0.2 Available View build log
Linux (32-bit)
3.0.21
3.0.23Never BuiltWhy not?
3.0.21 Available View build log
3.0.17 Available View build log
3.0.11 Available View build log
3.0.10 Available View build log
3.0.9 Available View build log
2.5.5 Available View build log
2.5.4 Available View build log
2.5.1 Available View build log
2.5.0 Available View build log
2.4.2 Available View build log
2.4.1 Available View build log
2.4.0 Available View build log
2.3.3 Available View build log
2.3.2 Available View build log
2.3.1 Available View build log
2.3.0 Available View build log
2.2.4 Available View build log
2.2.3 Available View build log
2.2.2 Available View build log
2.2.1 Available View build log
2.1.4 Available View build log
2.1.2 Available View build log
2.1.1 Available View build log
2.1.0 Available View build log
2.0.3 Available View build log
2.0.2 Available View build log
Linux (64-bit)
3.0.23 Available View build log
3.0.21 Available View build log
3.0.17 Available View build log
3.0.11 Available View build log
3.0.10 Available View build log
3.0.9 Available View build log
2.5.5 Available View build log
2.5.4 Available View build log
2.5.1 Available View build log
2.5.0 Available View build log
2.4.2 Available View build log
2.4.1 Available View build log
2.4.0 Available View build log
2.3.3 Available View build log
2.3.2 Available View build log
2.3.1 Available View build log
2.3.0 Available View build log
2.2.4 Available View build log
2.2.3 Available View build log
2.2.2 Available View build log
2.2.1 Available View build log
2.1.4 Available View build log
2.1.2 Available View build log
2.1.1 Available View build log
2.1.0 Available View build log
2.0.3 Available View build log
2.0.2 Available View build log
3.0.23 Available View build log
3.0.21 Available View build log
 
Author
License
BSD
Lastest release
version 3.0.23 on Sep 20th, 2013
http://cloud.github.com/downloads/celery/celery/celery_128.png
Version:3.0.23
Web:http://celeryproject.org/
Download:http://pypi.python.org/pypi/django-celery/
Source:http://github.com/celery/django-celery/
Keywords:celery, task queue, job queue, asynchronous, rabbitmq, amqp, redis, python, django, webhooks, queue, distributed

--

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-celery

To 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 users

If 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. Also the django-celery documentation, contains information about the Django integration.

Installation

You 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 are using south for schema migrations, you'll want to:

$ python manage.py migrate djcelery

For those who are not using south, a normal syncdb will work:

$ python manage.py syncdb
Downloading 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 root
Using the development version

You can clone the git repository by doing the following:

$ git clone git://github.com/celery/django-celery.git

Getting Help

Mailing list

For discussions about the usage, development, and future of celery, please join the celery-users mailing list.

IRC

Come chat with us on IRC. The #celery channel is located at the Freenode network.

Bug tracker

If you have any suggestions, bug reports or annoyances please report them to our issue tracker at http://github.com/celery/django-celery/issues/

Contributing

Development 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.

License

This software is licensed under the New BSD License. See the LICENSE file in the top distribution directory for the full license text.

Subscribe to package updates

Last updated Sep 20th, 2013

Download Stats

Last month:5

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.