Mr. Liu's technology blog
FastAPI-4:路径参数Path Parameters FastAPI-4:路径参数Path Parameters
FastAPI-4:路径参数Path Parameters什么是路径 假设一个 url 是:http://127.0.0.1:8080/items/abcd 那么路径 path 就是:/items/abcd 路径参数就是将路径上的某一部分
FastAPI-3:uvicorn.run() FastAPI-3:uvicorn.run()
FastAPI-3:uvicorn.run()Uvicorn 基于 uvloop 和 httptools 构建的非常快速的 ASGI 服务器; 它不是一个 Web 框架,而是一个服务器; 例如,他不是一个提供路径路由的框架,这是 FastA
FastAPI-2:快速入门 FastAPI-2:快速入门
FastAPI-2:快速入门安装pip install fastapi # 将来需要将应用程序部署到生产环境可以安装 uvicorn 作为服务器 pip install uvicorn 最简单的代码栗子from fastapi impor
FastAPI-1:介绍 FastAPI-1:介绍
FastAPI-1:介绍前言为啥要学它呢,因为学 Flask 的时候发现有人更推荐它代替 Flask ,看了下介绍,感觉很强,而且也能拿来做平台,当然学起来!卷起来! 为什么要是用FastAPI? 日渐没落的是后端HTML渲染这种方式,比如
笔记 笔记
笔记一、Python的requirements.txt文件# 自动生成requirements.txt文件 pip freeze > requirements.txt # 安装requirements.txt依赖 pip instal
2023-11-05 刘宇亭
8 / 8