首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >[python]fastapi安装后hello world

[python]fastapi安装后hello world

作者头像
云未归来
发布2025-07-19 14:31:35
发布2025-07-19 14:31:35
1190
举报

首先安装:

pip install fastapi uvicorn fastapi运行有两种方法:

使用命令行的方式运行:uvicorn py文件名:app --reload 使用python运行:python py文件名 方法一:命令行启动fastapi 在一个文件main.py中写入:

from fastapi import FastAPI

app = FastAPI()

@app.get("/") async def hello_world():     return {"hello fast api"} 在命令行运行:uvicorn main:app --reload 之后默认访问:http://127.0.0.1:8000/即可看到["hello fast api"]的结果

方法二:python直接运行(常用) 直接运行下面的文件,然后访问:http://127.0.0.1:5555/即可得到结果

# -*- coding:utf-8 -*-

from fastapi import FastAPI import uvicorn

app = FastAPI() @app.get("/") async def hello_world():     return {"hello fast api"} if __name__ == "__main__":     uvicorn.run(app, host="127.0.0.1", port=5200)

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2023-03-03,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档