FastAPI 是一个高性能 Web 框架,用于构建 API
pip install fastapi pip install uvicorn from fastapi import FastAPI app = FastAPI() @app.get("/") async def root(): return {"message": "Hello World"}