FastAPI(3)- uvicorn.run()

简介: FastAPI(3)- uvicorn.run()

Uvicorn


  • 基于 uvloop 和 httptools 构建的非常快速的 ASGI 服务器
  • 不是一个 Web 框架,而是一个服务器
  • 例如,它不是一个提供路径路由的框架,这是 FastAPI 框架提供的东西
  • 它是 Starlette 和 FastAPI 的推荐使用的服务器

 

总结

uvicorn 是运行 FastAPI 应用程序的主要 Web 服务器,uvicorn 和 Gunicorn 结合使用,拥有一个异步多进程服务器

 

什么是 ASGI、WSGI


https://www.cnblogs.com/poloyy/p/15291403.html

 

最简单的 FastAPI 代码


from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
    return {"message": "Hello World"}


启动 uvicorn


进到 py 文件所处目录下的命令行运行

uvicorn main:app

image.png

能不能不用命令行方式运行呢,否则太不方便了

可以!

 

使用 uvicorn.run()


from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
    return {"message": "Hello World"}
if __name__ == '__main__':
    uvicorn.run(app="2_get:app", host="127.0.0.1", port=8080, reload=True, debug=True)


  • 这样就不用敲命令行啦
  • uvicorn 有什么命令行参数,run() 方法就有什么参数

 

uvicorn 常用参数


参数 作用
app 运行的 py 文件:FastAPI 实例对象
host 访问url,默认 127.0.0.1
port 访问端口,默认 8080
reload 热更新,有内容修改自动重启服务器
debug 同 reload
reload_dirs 设置需要 reload 的目录,List[str] 类型
log_level 设置日志级别,默认 info

用到什么再补吧,暂时只用上这么多

相关文章
|
8月前
|
Rust Java Go
Python is Easy. Go is Simple. Simple != Easy
Python以其易学易用著称,常用于初学者编程和复杂科学计算,但其解释器的复杂性和环境易变性可能导致运行时问题。Go语言则追求简单,语法稳定,编译快速,生成的二进制文件小巧、独立。Go的静态链接特性使其能在不同系统上无缝运行,而Python在数据科学和原型设计上仍具有优势。结合两者,通过Django进行快速原型验证,然后用Go重构业务逻辑和高性能部分,形成了一种有效的开发策略。
48 0
|
机器学习/深度学习 缓存 Kubernetes
FastAPI(62)- FastAPI 部署在 Docker
FastAPI(62)- FastAPI 部署在 Docker
1523 0
FastAPI(62)- FastAPI 部署在 Docker
|
4月前
|
Unix Shell Linux
nohup python -u ai_miniprogram_main.py > ../iwork.out 2>&1 & 这句命令是做什么的?
nohup python -u ai_miniprogram_main.py > ../iwork.out 2>&1 & 这句命令是做什么的?
28 1
|
8月前
|
Python
Python Playwright 打包报错 Please run the following command to download new browsers
Python Playwright 打包报错 Please run the following command to download new browsers
275 0
|
5月前
|
数据库 Python
【Azure 应用服务】App Service中运行Python 编写的 Jobs,怎么来安装Python包 (pymssql)呢?
【Azure 应用服务】App Service中运行Python 编写的 Jobs,怎么来安装Python包 (pymssql)呢?
|
8月前
|
数据采集 NoSQL 中间件
python-scrapy框架(四)settings.py文件的用法详解实例
python-scrapy框架(四)settings.py文件的用法详解实例
84 0
|
关系型数据库 MySQL 网络安全
【Django】执行python manage.py makemigrations报错的解决方案
【Django】执行python manage.py makemigrations报错的解决方案
|
8月前
|
编解码 Python
求助:modelscope-Agent 本地运行 python apps\agentfabric\app.py 时报错
modelscope-Agent 本地运行 python apps\agentfabric\app.py 时报错
|
Go Python
go cmd 使用 与 结构 说明,go cmd 调用 python
go cmd 使用 与 结构 说明,go cmd 调用 python
67 0
|
API Python
FastAPI(7)- 详解 Path(下)
FastAPI(7)- 详解 Path(下)
172 0
FastAPI(7)- 详解 Path(下)