带有 Asyncio 的 Peewee

问题描述 投票:0回答:0

我可以这样用peewee吗?

...

def peewee_func(): ... #(some code with peewee)

async def main():
   await asyncio.to_thread(peewee_func)
   ...

我很确定它没问题,它一直在为我工作,但我只是想确保我没有搬起石头砸自己的脚……顺便说一句,我只使用 sqlite。

python asynchronous python-asyncio peewee
© www.soinside.com 2019 - 2024. All rights reserved.