| 123456789101112131415161718192021222324252627282930 | 
							- """myapp.py
 
- Usage:
 
-    (window1)$ python myapp.py -l info
 
-    (window2)$ python
 
-    >>> from myapp import add
 
-    >>> add.delay(16, 16).get()
 
-    32
 
- You can also specify the app to use with celeryd::
 
-     $ celeryd -l info --app=myapp.celery
 
- """
 
- from celery import Celery
 
- celery = Celery("myapp")
 
- celery.conf.update(BROKER_HOST="localhost")
 
- @celery.task
 
- def add(x, y):
 
-     return x + y
 
- if __name__ == "__main__":
 
-     celery.worker_main()
 
 
  |