파일 다운로드 설정
참조: 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)
2024.06.28