xlwt excel 스타일 설정
2021. 11. 23. 20:54
Project/access-control
🚫xlwt 구현 방법 참고용 (권장X) 이유는 👉 https://carpet-part1.tistory.com/470 참고🚫 excel 스타일 설정하기 views.py excel_export 전체 코드 import xlwt def excel_export(request): locale.setlocale(locale.LC_ALL,'') today = datetime.today().strftime('%Y-%m-%d') todayValue = datetime.today().strftime('%Y-%m-%d (%a)') response = HttpResponse(content_type="application/vnd.ms-excel") response["Content-Disposition"] = 'attachment..