Metadata-Version: 2.1
Name: image2excel
Version: 0.0.1
Summary: converts images to excel tables
Home-page: UNKNOWN
Author-email: michel.kluger@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: Pillow
Requires-Dist: colorama
Requires-Dist: openpyxl
Requires-Dist: excelwriter
Requires-Dist: Jinja2

<h1>Documentation for image2excel 0.0.1</h1>

This library recieves as inputs an image and outputs an Excel file (.xlsx) where each cell will be a pixel of the image.

The function has two parameters, resize (True is default) and keep_aspect (False is default), as shown by the following example:

    im2xlsx(file,resize=True,keepAspect=False)

The function has no return

---

The file parameter should contain a path, otherwise path where the script is running is taken as default path. The input path will be used for the output path as well.

The resize parameter will only work to reduce the image, in case the image is already smaller in both dimensions than the recommended 260 x 300, no resizing will take place

the parameter keep aspect, as it is relatively clear, will keep the ratio between width and height of the image 

---

This package and documentation are in the first version and it is also my first package in PYPI, so in case you have any sort of recommendations, please let me know =))

Also if you know how to make the code more performant or robust, I will also be happy with improving this 

