发现个利器--FastAPI(Py3.6+版本)
Posted music378
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了发现个利器--FastAPI(Py3.6+版本)相关的知识,希望对你有一定的参考价值。
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}
@app.get("/items/{item_id}")
def read_item(item_id: int, q: str = None):
return {"item_id": item_id, "q": q}
这么方便就算了,然后打开http://127.0.0.1:8000/docs,能看到接口信息!超便捷!
GitHub地址:https://github.com/tiangolo/fastapi
以上是关于发现个利器--FastAPI(Py3.6+版本)的主要内容,如果未能解决你的问题,请参考以下文章
win10+py3.6+cuda9.0安装pytorch1.1.0