当前位置:网站首页>fastapi 如何响应文件下载
fastapi 如何响应文件下载
2022-06-13 11:16:00 【疯魔coding君】
fastapi 想要响应文件下载,需要从 starlette.responses 中导入 FileResponse
from starlette.responses import FileResponse
并在这之前还得安装 aiofiles 依赖包
pip install aiofiles
完整代码如下:
FileResponse 第一个参数为文件所在路径,第二个参数表示下载时文件所显示的名称
import uvicorn
from fastapi import FastAPI
from starlette.responses import FileResponse
app = FastAPI()
@app.get("/file")
def file():
return FileResponse('./demo.md', filename='demo.md')
if __name__ == '__main__':
uvicorn.run('main:app', port=5555, reload=True)
边栏推荐
- 塔米狗知识|全面剖析国有企业并购含义及其作用
- State compression DP example (traveling salesman problem and rectangle filling problem)
- [tcapulusdb knowledge base] tcapulusdb operation and maintenance doc introduction
- 【TcaplusDB知识库】Tmonitor后台一键安装介绍(一)
- Acwing game 55
- CommonAPI与AUTOSAR AP通讯管理的异同
- 高斯消元求n元方程组
- Do you agree that the salary of hardware engineers is falsely high?
- Finally, the monthly income is 20000!!
- Go zero microservice Practice Series (III. API definition and table structure design)
猜你喜欢
随机推荐
恶意代码实战分析Lab05-01
报告录屏+PPT 傅云飞-喜马拉雅山脉南坡云降水特征研究
Folder data synchronization tool sync folders Pro
Nim game ladder Nim game and SG function application (set game)
To vent their dissatisfaction with their superiors, Baidu post-95 programmers were sentenced to 9 months for deleting the database
宝塔添加一个网站:PHP项目
Similarities and differences between commonAPI and AUTOSAR AP communication management
Necessary for Architects: system capacity status checklist
We spent a weekend migrating 3.7 million lines of code to typescript
Show/exec and close/hide of QT form are not executed when calling the close destructor
[tcapulusdb knowledge base] Introduction to tmonitor background one click installation (I)
【TcaplusDB知识库】Tmonitor单机安装指引介绍(一)
Go zero microservice Practice Series (III. API definition and table structure design)
Database learning notes (Chapter 16)
ARM64 上的性能怪兽:API 网关 Apache APISIX 在 AWS Graviton3 上的安装和性能测试
【sql语句基础】——查(select)(单表查询顺序补充)
Pyepics download and installation
Anonymity in Web3 and NFT
【TcaplusDB知识库】TcaplusDB新增机型介绍
【TcaplusDB知识库】Tmonitor后台一键安装介绍(一)









