dependable:从FastAPI中提取的依赖项注入系统 源码
可信 从fastapi提取依赖注入系统 import asyncio from random import random from dependable import dependant , Depends @ dependant async def main (*, choice : int = Depends ( random )) -> None : print ( choice ) asyncio . run ( main ()) 更多 安装 poetry add dependable # pip install dependable Python 3.6 需要和 poetry add async-exit-stack async_generator # pip install async-exit-stack async_generator 发展 docke
用户评论