gpt4 book ai didi

python - Asyncio 与另一个协程同时运行 Dash (Flask) 服务器

转载 作者:行者123 更新时间:2023-12-05 02:42:55 32 4
gpt4 key购买 nike

我创建了一个 dash 应用程序来显示另一个代码正在收集的信息,我想使用 Python 中的 asyncio 模块同时运行它们。

我的代码使用异步函数,Dash 应用程序(基于 Flask)在服务时阻止执行任何其他内容。

我不确定这是否需要打开更多线程。

这是我当前的代码,它只运行主协程。

async def main():
some code here...

while True:
try:
await client.handle_message()
except ConnectionClosedError as error:
logger.error(error)

for strategy in strategies:
await asyncio.create_task(...)
some code here...

async def run_dashboard():
app = create_app()
app.run_server('0.0.0.0', 5000, debug=False)


if __name__ == '__main__':
some code here...

# Currently just runs the main coroutine
asyncio.run(main())

如何同时运行 main 和 run_dashboard?

最佳答案

坦率地说,将 Dash (Flask) 与一些异步工作结合在一个进程中是不好的设计,考虑在不同的进程(即应用​​程序)中运行 Flask 和异步事件。

尽管如此,如果您仍然想在一个进程中运行所有程序,我可以给您以下工作示例,请关注评论并询问您是否有任何问题:

from flask import Flask, jsonify
import asyncio
from threading import Thread

# ** Async Part **


async def some_print_task():
"""Some async function"""
while True:
await asyncio.sleep(2)
print("Some Task")


async def another_task():
"""Another async function"""
while True:
await asyncio.sleep(3)
print("Another Task")


async def async_main():
"""Main async function"""
await asyncio.gather(some_print_task(), another_task())


def async_main_wrapper():
"""Not async Wrapper around async_main to run it as target function of Thread"""
asyncio.run(async_main())

# *** Flask Part ***:


app = Flask(__name__)


@app.route("/", methods=["GET"])
def index():
"""just some function"""
return jsonify({"hello": "world"})


if __name__ == '__main__':
# run all async stuff in another thread
th = Thread(target=async_main_wrapper)
th.start()
# run Flask server
app.run(host="0.0.0.0", port=9999)
th.join()

关于python - Asyncio 与另一个协程同时运行 Dash (Flask) 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67206119/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com