Metadata-Version: 2.0
Name: ExcelToCsv
Version: 0.1.1
Summary: A python package to convert excel spreadsheets to csv files
Home-page: https://github.com/WaylonWalker/ExcelToCsv
Author: Waylon Walker
Author-email: quadmx08@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Requires-Dist: xlrd

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
------------
xlrd

installation
------------

.. code-block:: cmd

  git clone https://github.com/WaylonWalker/ExcelToCsv.git
  cd ./ExcelToCsv
  python setup.py install


Usage
-----

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




