Skip to content

Instantly share code, notes, and snippets.

@jpi-seb
jpi-seb / each_cell_on_its_own_line
Created April 3, 2019 09:34 — forked from nmz787/each_cell_on_its_own_line
git-xlsx-textconv-python
import xlrd
import sys
if __name__ == '__main__':
if len(sys.argv) != 2:
print "Usage: git-xlsx-textconv file.xslx"
excelFileName = sys.argv[1]
xlFile = xlrd.open_workbook(excelFileName)