[python]fastapi安装后hello world

Posted FL1623863129

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[python]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=5200)
 

以上是关于[python]fastapi安装后hello world的主要内容,如果未能解决你的问题,请参考以下文章

FastAPI 1:安装FastAPI

API接口开发其实特简单,Python FastApi Web 框架教程来了

API接口开发其实特简单,Python FastApi Web 框架教程来了

如何在调用更新后端状态的函数时从 python (fastapi) 发送服务器端事件

GitHub:FastAPI是一种现代,快速(高性能)的Web框架

FastAPI websocket 无法处理大量数据传入?