| 1234567891011121314151617181920212223242526272829 | """myapp.pyUsage:   (window1)$ python myapp.py worker -l info   (window2)$ python   >>> from myapp import add   >>> add.delay(16, 16).get()   32You can also specify the app to use with the `celery` command,using the `-A` / `--app` option::    $ celery -A myapp worker -l info"""from celery import Celerycelery = Celery('myapp', broker='amqp://guest@localhost//')@celery.task()def add(x, y):    return x + yif __name__ == '__main__':    celery.start()
 |