diff options
author | mjfernez <mjfernez@gmail.com> | 2021-03-06 16:41:40 -0500 |
---|---|---|
committer | mjfernez <mjfernez@gmail.com> | 2021-03-06 16:41:40 -0500 |
commit | 1d832ee6c1c9c6701e6a1ab4c26acdc2dad3784a (patch) | |
tree | 3bb8de56c267799a58880071a0f20847231a16ad /xls2csv/README.md | |
parent | 9ae2789aa268b37716b5296263497c1aa35cf590 (diff) | |
download | scripts-n-tools-1d832ee6c1c9c6701e6a1ab4c26acdc2dad3784a.tar.gz |
add gitignore
Diffstat (limited to 'xls2csv/README.md')
-rw-r--r-- | xls2csv/README.md | 32 |
1 files changed, 32 insertions, 0 deletions
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 :) |