我有一些异步功能。看下面的示例:
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 ,因为在函数运行时,这不会让我做其他事情。我如何等待这些功能?