Ask Solem 6b3a480e8b CELERY_BACKEND renamed to CELERY_RESULT_BACKEND, but keep CELERY_BACKEND as a compat setting. 15 anos atrás
..
README.rst 72a0778847 Added README.rst to examples/pythonproject/demoapp 15 anos atrás
__init__.py b5f44f6001 Added examples/ (not done) 15 anos atrás
celeryconfig.py 6b3a480e8b CELERY_BACKEND renamed to CELERY_RESULT_BACKEND, but keep CELERY_BACKEND as a compat setting. 15 anos atrás
tasks.py e6e8766ea6 Managed to commit some debugging code. 15 anos atrás
test.py a40fc34d38 PEP8ify 15 anos atrás

README.rst

======================================
Example Python project using Celery
======================================


Modules
-------

* celeryconfig.py

The celery configuration module.

* tasks.py

Tasks are defined in this module. This module is automatically
imported by the worker because it's listed in
celeryconfig's ``CELERY_IMPORTS`` directive.

* test.py

Simple test program running tasks.



Running
-------


Open up two terminals, in the first you run:

$ celeryd --loglevel=INFO

In the other you run the test program:

$ python ./test.py

Voila, you've executed some tasks!