Ask Solem 62647576d4 Examples now use broker URL. sqlakombu is currently broken though, need to find a solutionf or that %!s(int64=13) %!d(string=hai) anos
..
README.rst 0afa1efa28 Docs: Replaced all occurences of ``literal`` with `literal` %!s(int64=14) %!d(string=hai) anos
__init__.py b5f44f6001 Added examples/ (not done) %!s(int64=15) %!d(string=hai) anos
celeryconfig.py 62647576d4 Examples now use broker URL. sqlakombu is currently broken though, need to find a solutionf or that %!s(int64=13) %!d(string=hai) anos
tasks.py d4013e5389 celery.decorators.task replaced with celery.task, where the latter does not support magic keyword arguments. %!s(int64=14) %!d(string=hai) anos
test.py a40fc34d38 PEP8ify %!s(int64=15) %!d(string=hai) anos

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!