1、下载 python3.5以后版本
Download Python | Python.org
下载安装后,在com窗口运行python -v 查看python是否安装完成。1
2、下载编辑软件pycharm
PyCharm: the Python IDE for Professional Developers by JetBrains
3、在com窗口运行
pip install fastapi
安装fastapi
4、
在com窗口运行
pip install uvicorn
安装http服务器
注意:可以通过执行
pip install fastapi [all]
一次性安装所有需要的库。
6、查看uvicorn的配置说明
uvicorn --help
--reload 是一个常用选项
7、完成第一个程序
from fastapi import FastAPI
import uvicorn
app=FastAPI()
if __name__=='__main__':
uvicorn.run(app)
完成编写程序后用pycharm运行会出现如下提示
双击超链接
出现如下错误提示
原因是uvicorn已经在127.0.0.1:8000开启了服务,但是因为程序没有对服务地址进行解析,也没有提供任何服务的内容,所有在访问这个端口的时候什么也没有得到。
8、提供第一个具有服务的API
from fastapi import FastAPI
import uvicorn
app=FastAPI()
# 把/地址绑定到index函数
@app.get("/")
def index():
return {"city":"ly"}
if __name__=='__main__':
uvicorn.run(app)
在pycharm运行程序后,可能会提示程序正在运行。是因为上次运行的服务一直没有关闭。先关闭上次的程序。让后再运行新的程序后,pycharm会给出如下提示;
单击超链接
取得了API的服务信息。
9、还可以返回一个list
from fastapi import FastAPI
import uvicorn
app=FastAPI()
# 把/地址绑定到index函数
@app.get("/")
def index():
return {"city":"ly"}
# 把/list地址绑定到list函数
@app.get("/list")
def list():
return ["one","two","three"]
if __name__=='__main__':
uvicorn.run(app)
注意访问地址变了。增加了/list.这次的返回值是列表
10、使用post请求
@app.post("/login")
def login():
return "这是一个post请求login"
使用浏览器访问会出现故障。因为浏览器默认是get请求
需要下载调试工具 对服务器发起psot请求
postman需要注册账号才可以使用,所以再网上找到了
Apifox
用微信扫码就可以登录。
测试结果
没有看懂免费版和收费版的区别。
11、利用api_raoute让一条请求,兼容多个协议。
@app.api_route("/login",methods=("GET","POST","PUT"))
def login():
return {"mode1":"GET","mode2":"POST","mode3":"PUT"}
12、通过url取得参数
@app.get("/user/{id}")
def user(id):
return id
向API /user发送参数id可以使用地址
13.利用 --roload参数自动加载更改后的文件
必须再pycharm的虚拟终端而且是day1.py的同一个目录下运行。cmd窗口不能运行。