栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

fastapi学习(一):输出hello world与基本运行方法

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

fastapi学习(一):输出hello world与基本运行方法

首先安装:

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=5555)
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/757257.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号