2 Star 4 Fork 4

尹煜/FastAPI_Study_Yinyu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
1_hello_word.py 358 Bytes
一键复制 编辑 原始数据 按行查看 历史
尹煜 提交于 2023-06-11 23:32 . 10章内容
from fastapi import FastAPI
#uvicorn main:app --reload 终端启动
#终端需要 pip install fastapi、pip install uvicorn
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}
#学习链接:https://fastapi.tiangolo.com/zh/
if __name__ == '__main__':
import uvicorn
uvicorn.run(app,host="127.0.0.1",port=8000)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/yinyuu/fast-api_study_yinyu.git
git@gitee.com:yinyuu/fast-api_study_yinyu.git
yinyuu
fast-api_study_yinyu
FastAPI_Study_Yinyu
master

搜索帮助