1 Star 0 Fork 1

零度/fastapi-tutorial

forked from Bianer/fastapi-tutorial 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
run.py 840 Bytes
一键复制 编辑 原始数据 按行查看 历史
Bianer 提交于 2023-08-15 18:25 . change
import uvicorn
from fastapi import FastAPI
from fastapi.staticfiles import StaticFiles
from tutorial import app03, app04, app05, app06, app07, app08
app = FastAPI(
title="Fast API 教程 API文档",
description='这是描述',
version='1.0.0'
)
app.mount(path='/static',app=StaticFiles(directory='./static'),name='static') # 配置静态文件
app.include_router(app03, prefix='/chapter03', tags=['第三章 请求参数验证']) # prefix请求的URL tags标题
app.include_router(app04, prefix='/chapter04', tags=['第四章 响应处理和FastAPI配置']) # prefix请求的URL tags标题
app.include_router(app05, prefix='/chapter05', tags=['第五章 FastAPI的依赖注入系统']) # prefix请求的URL tags标题
if __name__ == '__main__':
uvicorn.run('run:app', host='0.0.0.0', port=8000, reload=True, workers=1)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lingdushiran/fastapi-tutorial.git
git@gitee.com:lingdushiran/fastapi-tutorial.git
lingdushiran
fastapi-tutorial
fastapi-tutorial
master

搜索帮助