python celery 无效值 -A 无法加载应用程序

python celery invalid value for -A unable to load application

我有以下项目目录:

azima:
    __init.py
    main.py
    tasks.py

task.py

from .main import app

@app.task
def add(x, y):
    return x + y

@app.task
def mul(x, y):
    return x * y

@app.task
def xsum(numbers):
    return sum(numbers)

main.py

from celery import Celery

app = Celery('azima', backend='redis://localhost:6379/0', broker='redis://localhost:6379/0', include=['azima.tasks'])

# Optional configuration, see the application user guide.
app.conf.update(
    result_expires=3600,
)

if __name__ == '__main__':
    app.start()

当我 运行 一个初始化 celery worker 的命令时,我得到这个错误:

(azima_venv) brightseid@darkseid:~$ celery -A azima worker -l INFO
Usage: celery [OPTIONS] COMMAND [ARGS]...

Error: Invalid value for '-A' / '--app': 
Unable to load celery application.
Module 'azima' has no attribute 'celery'

但是当我将 main.py 重命名为 celery.py 时,就没有问题了。

我在这里错过了什么?

有两种方法

  1. 将您的 app 导入到 azima/__init__.py
from azima.main import app
    
celery = app  # you can omit this line

您可以省略最后一行,celery 将从导入中识别 celery 应用程序。然后你调用 celery -A azima worker -l INFO

  1. celery -A azima.main worker -l INFO
  2. 这样称呼你的应用程序