Celery Basic Example

Broker: redis

Installation packages

Python 3.7

pip install -r requirements.txt

Running the Celery worker server

  • Ubuntu
celery -A my_worker worker --loglevel=INFO
  • Windows
celery -A my_worker worker -l info -P  gevent

Calling the task

python main.py