Skip to content

Instantly share code, notes, and snippets.

View icedwater's full-sized avatar
😅
I may be slow to respond.

icedwater icedwater

😅
I may be slow to respond.
View GitHub Profile
@icedwater
icedwater / each_cell_on_its_own_line
Last active March 2, 2021 18:57 — 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.xlsx"
excelFileName = sys.argv[1]
xlFile = xlrd.open_workbook(excelFileName)
#!/usr/bin/env python
# Copyright (c) 2008 Carnegie Mellon University.
#
# You may modify and redistribute this file under the same terms as
# the CMU Sphinx system. See
# http://cmusphinx.sourceforge.net/html/LICENSE for more information.
import pygtk
pygtk.require('2.0')