在python中加入异步功能

时间:2018-07-29 13:46:58

标签: python asynchronous async-await python-asyncio

我有一些异步功能。看下面的示例:

async def read_database():
    # some code

async def read_web():
    # some code

db_data = read_database()
web_data = read_web()

# do some stuff

# Now here I want to wait for db_data and web_data if the functions did not yet complete.

如果我使用了 threading multiprocessing 库,我只会使用join。我不想使用 await ,因为在函数运行时,这不会让我做其他事情。我如何等待这些功能?

0 个答案:

没有答案