Skip to content

Instantly share code, notes, and snippets.

View ThreeNG's full-sized avatar

Yoshi Neil ThreeNG

View GitHub Profile
@julianthome
julianthome / excel2csv.py
Last active June 1, 2022 04:36
Python script to export excel sheets to CSV from a workbook in UTF-8
#!/usr/bin/env python
# export data sheets from xlsx to csv
from openpyxl import load_workbook
import csv
from os import sys
def get_all_sheets(excel_file):
sheets = []