Metadata-Version: 2.1
Name: openpyxl-image-loader
Version: 1.0.5
Summary: Openpyxl wrapper that gets images from cells
Home-page: https://github.com/mauricio-chavez/openpyxl-image-loader
Author: Mauricio Chávez Olea
Author-email: mauriciochavez@ciencias.unam.mx
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: Pillow

# Openpyxl Image Loader

Openpyxl wrapper that gets images from cells

## Requirements

* [openpyxl](https://pypi.org/project/openpyxl/)

## Usage

```python
from openpyxl import load_workbook
from openpyxl_image_loader import SheetImageLoader

# Load your workbook and sheet as you want, for example
wb = load_workbook('path_to_file.xlsx')
sheet = wb['required_sheet']

# Put your sheet in the loader
image_loader = SheetImageLoader(sheet)

# And get image from specified cell
image = image_loader.get('A3')

# Image now is a Pillow image, so you can do the following
image.show()

# Ask if there's an image in a cell
if image_loader.image_in('A4):
    print("Got it!")

```


