Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waylonwalker/exceltocsv
A usefull tool to convert excel spreadsheets to csv files without launching excel
https://github.com/waylonwalker/exceltocsv
csv-converter csv-files data excel python spreadsheet
Last synced: about 1 month ago
JSON representation
A usefull tool to convert excel spreadsheets to csv files without launching excel
- Host: GitHub
- URL: https://github.com/waylonwalker/exceltocsv
- Owner: WaylonWalker
- License: mit
- Created: 2017-02-05T18:33:24.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-05-31T00:38:20.000Z (over 4 years ago)
- Last Synced: 2024-09-15T21:27:48.521Z (3 months ago)
- Topics: csv-converter, csv-files, data, excel, python, spreadsheet
- Language: Python
- Homepage: https://github.com/WaylonWalker/ExcelToCsv
- Size: 51.8 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
ExcelToCsv
==========A python package to convert excel spreadsheets to csv files without launching excel. This works very well with large files that include many tabs which makes Excel very slow to open.
requirements
------------
xlrdinstallation
------------.. code-block:: cmd
git clone https://github.com/WaylonWalker/ExcelToCsv.git
cd ./ExcelToCsv
python setup.py installUsage
-----ExcelToCsv [-h] [--input_file F [F ...]] [--output_file OUTPUT_FILE]
[--sheet SHEET] [--skiprows SKIPROWS] [--verbose]Convert File Excel File to csv quickly without loading excel
optional arguments:
-h, --help show this help message and exit
--input_file F [F ...] File to convert
--output_file OUTPUT_FILE
Output file name if different than input
--sheet SHEET sheet number where first sheet is 1
--skiprows SKIPROWS skip first n rows
--verbose asks for all arguments when not passed
Example
-------```
ExcelToCvs --verbose
```.. image:: example.gif