摘要: 安装 FastAPI pip install fastapi # 将来需要将应用程序部署到生产环境可以安装 uvicorn 作为服务器 pip install uvicorn 最简单的代码栗子 from fastapi import FastAPI app = FastAPI() @app.get( 阅读全文
posted @ 2021-09-13 22:00 小菠萝测试笔记 阅读(2150) 评论(1) 推荐(1) 编辑