BadZipFile : File is not a zip file
xlsx_wb = openpyxl.load_workbook(filename = BytesIO(order_response.content))
xlsx_rows = xlsx_wb.get_sheet_by_name("Sheet1").rows
편집할 엑셀에서 데이터가 존재하지 않을 시, 발생하는 에러
날짜별로 엑셀 데이터 유무가 나눠지는 상황에서 try, except 구문을 사용하여,
에러는 pass하고, 데이터가 있을 시에만 다음 동작을 하게끔 분기점을 나누어 작업하였다.