Metadata-Version: 2.1
Name: xlsxToCsv
Version: 1.0.0
Summary: Takes user specified range data from .xlsx and then converts data to json dict and/or csv.
Home-page: https://github.com/willmichel81/excelToCSV
Author: Will Michel
Author-email: willmichel81@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/willmichel81/excelToCSV/issues
Keywords: csv,excel,xlsx,excelToCsv,xlsxToCsv
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# excelToCSV
The <code>xlsxToCsv</code> package contains the ability to convert .xlsx file to a .csv file that is more consumable by many other packages/programs/scripts.<br /><br />

The source code for this package is available at https://github.com/willmichel81/excelToCSV.<br /><br />

The importable name of the package is excelToCSV<br /><br />

<code>
>>> from xlsxToCSV import excelToCSV
</code>

<h2>Short Summery</h2>
Takes user specified range data (ex. A1:A16) data from sheet(s)(ex. "MAIN") in side of .xlsx and then converts data to json dict and/or csv.


