· 约 2 分钟

02-FastAPI基础入门-FastAPI框架简介

  • FastAPI
  • Python

学习目标

核心概念

FastAPI 是一个专门做 Web API 的 Python 框架,它最核心的几个特点是:

FastAPI 很适合做:

它和其他框架的区别

案例

from fastapi import FastAPI

app = FastAPI()


@app.get("/")
def read_root():
    return {"message": "Hello FastAPI"}

这段代码已经体现了 FastAPI 的风格:

易错点

我的补充

你可以把 FastAPI 理解成:

一个对类型提示非常友好的 API 框架

这句话几乎能概括它的大部分设计思路。