百木园-与人分享,
就是让自己快乐。

FastAPI 学习之路(一)fastapi--高性能web开发框架

fastapi是高性能的web框架。他的主要特点是:- 快速编码- 减少人为bug- 直观- 简易- 具有交互式文档

- 高性能

- 基于API的开放标准

 

    支持python 3.6版本。

安装 

pip install fastapi

安装部署包

pip install uvicorn

开始开发。

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}

来源:https://www.cnblogs.com/leiziv5/p/15270567.html
图文来源于网络,如有侵权请联系删除。

未经允许不得转载:百木园 » FastAPI 学习之路(一)fastapi--高性能web开发框架

相关推荐

  • 暂无文章