An open API service indexing awesome lists of open source software.

https://github.com/pythonicninja/test_celery


https://github.com/pythonicninja/test_celery

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# test_celery

```
virtualenv env -p python3
pip install celery
```

# run worker

```
celery worker --app celeryd --loglevel DEBUG
```

# add task to worker

```
python tasks.py 2 6
```

or

```
>>> from tasks import *
>>> multiply.apply_async((2, 6))

>>> task = multiply.apply_async((2, 6))
```