Skip to content

Instantly share code, notes, and snippets.

View Riribepa's full-sized avatar

Raya Riribepa

View GitHub Profile
@Riribepa
Riribepa / excel2csv.py
Created July 18, 2018 13:46 — forked from julianthome/excel2csv.py
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 = []