파일 다운로드 설정
2024. 6. 28. 22:56ㆍ파이썬/FastAPI
참조: https://chaechae.life/blog/fastapi-download-api
FastAPI 파일 다운로드 구현하기
특정 데이터들을 Excel로 다운로드 하거나, 이미지들을 다운로드 하는 등의 요청이 있었습니다. 이와 관련해서 FastAPI에서 파일 다운로드 방법을 이번 포스팅에 공유하고자 합니다.
chaechae.life
@app.get('/qrcode')
async def qrcode(file: str):
return FileResponse(file, media_type='image/png', filename=file)
'파이썬 > FastAPI' 카테고리의 다른 글
로그인 추가하기 (0) | 2025.04.13 |
---|---|
FastAPI 이미지 만들기 (1) | 2024.09.16 |
FastAPI CORS 설정 (0) | 2024.04.01 |
FastAPI post 설정 (1) | 2024.03.16 |
FastAPI 설정 (0) | 2024.03.16 |