Metadata-Version: 2.1
Name: xlcsv
Version: 0.2.1
Summary: A Python micropackage for consuming Excel as CSV.
Home-page: https://github.com/cnpryer/xlcsv.git
License: MIT
Author: Chris Pryer
Author-email: cnpryer@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: openpyxl (>=3.0.10,<4.0.0)
Project-URL: Repository, https://github.com/cnpryer/xlcsv.git
Description-Content-Type: text/markdown

# xlcsv

A Python micropackage for consuming Excel as CSV.

Build CSV `StringIO` from Excel files.

```py
import xlcsv


buffer = xlcsv.excel_to_csv_buffer("my-file.xlsx")
```

