-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathC14_excel_to_csv.py
31 lines (29 loc) · 1.18 KB
/
C14_excel_to_csv.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""
Converts
"""
import openpyxl
import os
import csv
for excelFile in os.listdir('.'):
# Skip non-xlsx files, load the workbook object.
if not excelFile.endswith('.xlsx'):
continue
wb = openpyxl.load_workbook(excelFile)
for sheetName in wb.get_sheet_names():
# Loop through every sheet in the workbook.
sheet = wb.get_sheet_by_name(sheetName)
# Create the CSV filename from the Excel filename and sheet title.
# Create the csv.writer object for this CSV file.
csvFileName = open(excelFile + sheetName + '.csv', 'w', newline='')
csvWriter = csv.writer(csvFileName)
# Loop through every row in the sheet.
for rowNum in range(1, sheet.get_highest_row() + 1):
rowData = [] # append each cell to this list
# Loop through each cell in the row.
for colNum in range(1, sheet.get_highest_column() + 1):
# Append each cell's data to rowData.
cellData = sheet.cell(row=rowNum, column=colNum).value
rowData.append(cellData)
# Write the rowData list to the CSV file.
csvWriter.writerow(rowData)
csvFileName.close()