当前分类:python>>正文

快速构建Web应用程序的Python框架

来源:互联网   更新时间:2023年7月27日  

Python 笔记

一、框架简介

二、优点介绍

三、快速上手

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}

四、结论

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://6yhj.com/leku-p-5083.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 心情