FastAPI详解编程语言

FastAPI是一个基于 python 的,高性能Web框架

在Uvicorn下运行的FastAPI应用程序是可用的最快的Python框架之一

安装

pip install fastapi

运行需要ASGI服务器,在生产环境中使用 uvicorn

pip install uvicorn

 eg:

  main.py

from fastapi import FastAPI 
 
app = FastAPI() 
 
@app.get("/") 
def home(): 
    return {"Hello": "World"}

运行

uvicorn main:app --reload

FastAPI详解编程语言

eg:

from fastapi import FastAPI 
from pydantic import BaseModel 
app = FastAPI() 
 
class Item(BaseModel): 
    name: str 
    price: float 
    is_offer: bool = None 
 
@app.get("/") 
def home(): 
    return {"Hello": "World"} 
 
@app.get("/items/{item_id}") 
def read_item(item_id: int, q: str = None): 
    return {"item_id": item_id, "q": q} 
 
 
@app.put("/items/{item_id}") 
def update_item(item_id: int, item: Item): 
    return {"item_name": item.name, "item_id": item_id}

自动生成的接口文档

(1)http://localhost:8000/docs

FastAPI详解编程语言

 (2)http://localhost:8000/redoc

FastAPI详解编程语言

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/20447.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论