[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的主要内容,如果未能解决你的问题,请参考以下文章

[python]fastapi安装后hello world

python Python中的简单Markdown服务器。假设您在〜/ Text中有Markdown文件。在http:// localhost:5000 / w / Hello访问〜/ Text /

Python中,怎么在字符串里嵌入双引号或者单引号

"Hello Python"_开篇介绍

PythonVisual Studio Code 安装&&使用 hello python~~~~

python第一课————软件安装及“hello,world”程序编写