python 用fastapi 写接口
时间: 2023-05-29 21:05:33 浏览: 378
使用Python FastAPI构建Web服务的实现
1. 首先安装fastapi和uvicorn
```
pip install fastapi
pip install uvicorn
```
2. 新建一个Python文件,比如app.py,添加以下代码:
```python
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}
```
3. 启动应用程序,使用以下命令:
```
uvicorn app:app --reload
```
4. 打开浏览器,访问http://localhost:8000/ ,即可看到返回的消息。
阅读全文