다음과 같이 응답할 수 있음.
from django.http import HttpResponse
...
response = HttpResponse(content_type='text/csv')
df.to_csv(path_or_buff=response)
...
참고: https://stackoverflow.com/questions/54729411/pandas-csv-to-django-response
반응형
'CS > python' 카테고리의 다른 글
Git Jupyter notebook 충돌 해결 방법 (0) | 2023.05.03 |
---|---|
[Python] tqdm progress bar 안보일 때 (해결) (0) | 2023.04.28 |
[python] pyenv, pyenv virtualenv 란? (1) | 2022.12.29 |
[tensorflow] tensorflow CUDA 호환성 확인하기 (0) | 2022.12.23 |
[python] 특정 경로가 없을 때 디렉토리를 생성하는 방법 (0) | 2022.09.27 |