4
Gunicornを使用してaiohttpベースのサーバーを実行しようとしています。gunicornを使用してaiohttpサーバーを実行しています
Failed to find application: 'aiohttpdemo_polls'
をしかし、私は以下のようなのpython -mを使用して、それを実行しているとき:
gunicorn aiohttpdemo_polls:app --bind 127.0.0.1:8080
それが返されます:それは正常に動作します
python -m aiohttpdemo_polls
ここ
はコマンドです。コードはaiohttpリポジトリのデモアプリケーションである hereから見つけることができます。 はまた、以下のようにそれを試してみました:gunicorn aiohttpdemo_polls.main:app --bind 127.0.0.1:8080
しかし、そのまた、サーバーを実行していません。それは返す
Failed to find application: 'aiohttpdemo_polls.main'
問題を修正するための詳細はどこにありますか?