FastApi
FastApi
FastAPI 是一个用于构建 API 的现代、快速(高性能)的 web 框架,专为在 Python 中构建 RESTful API 而设计。
FastApi 安装
pip install fastapi
需要一个 ASGI 服务器,生产环境可以使用 Uvicorn 或者 Hypercorn
pip install "uvicorn[standard]"
未完~
FastAPI 是一个用于构建 API 的现代、快速(高性能)的 web 框架,专为在 Python 中构建 RESTful API 而设计。
pip install fastapi
需要一个 ASGI 服务器,生产环境可以使用 Uvicorn 或者 Hypercorn
pip install "uvicorn[standard]"
未完~