Django excel export 구현 순서(xlwt)
2021. 11. 17. 20:23
Project/access-control
🚫xlwt 구현 방법 참고용 (권장X) 이유는 👉 https://carpet-part1.tistory.com/470 참고🚫 1️⃣ xlwt 받기 pip install xlwt 2️⃣ 엑셀 다운로드 구현 엑셀 export 기능을 구현할 app의 views.py import xlwt def excel_export(request): response = HttpResponse(content_type="application/vnd.ms-excel") response["Content-Disposition"] = 'attachment;filename*=UTF-8\'\'example.xls' wb = xlwt.Workbook(encoding='ansi') #encoding은 ansi로 해준다. ws = wb.add_s..