This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Bundle-NativeCode: lib/native/64bit/FaCTPlusPlusJNI.dll; | |
| osname=Win32 ; | |
| processor=x86_64 ; | |
| processor = amd64 , | |
| lib/native/32bit/FaCTPlusPlusJNI.dll; | |
| osname=Win32 ; | |
| processor = i386 ; | |
| processor = x86 , | |
| lib/native/64bit/libFaCTPlusPlusJNI.so; | |
| osname=Linux ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Bundle-NativeCode: lib/native/64bit/FaCTPlusPlusJNI.dll; | |
| osname=win ; | |
| osname=WindowsNT ; | |
| osname=Windows NT ; | |
| osname=WinNT ; | |
| osname=WindowsXP ; | |
| osname=Windows XP ; | |
| osname=WinXP ; | |
| osname=WindowsVista ; | |
| osname=Windows Vista ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |