From 1d832ee6c1c9c6701e6a1ab4c26acdc2dad3784a Mon Sep 17 00:00:00 2001 From: mjfernez Date: Sat, 6 Mar 2021 16:41:40 -0500 Subject: add gitignore --- xls2csv/README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 xls2csv/README.md (limited to 'xls2csv/README.md') diff --git a/xls2csv/README.md b/xls2csv/README.md new file mode 100644 index 0000000..c919252 --- /dev/null +++ b/xls2csv/README.md @@ -0,0 +1,32 @@ +# XLStoCSV + +A simple and mostly useless tool for converting excel files (.xls and .xlsx) to +raw CSV format. + +Basic usage: + +XLStoCSV.exe /path/to/files + +Use -h or --help (or just run with no arguments) to display a help menu + +Obviously, any editing software already has this capability built in, but sometimes +(as in my current situation) you get a lot of data in Excel format and you don't +want to convert each one manually. This here is a quick and dirty solution using Pandas. + +You can find executables for Windows and Linux in the "dist" folder + +If you want to compile from source, I recommend using pyinstaller. + +Use: + +pip3 install pyinstaller + +and then compile using the spec file: + +pyinstaller -F XLStoCSV.spec + +(NOTE: YOU MUST USE PYTHON3. PYTHON 2 GIVES ISSUES WITH PANDAS WHEN COMPILED) + +There is no license for this code. Feel free to re-distribute as you wish. + +You don't need to credit me, although it'd be appreciated :) -- cgit v1.2.3