What is pyxlimg
Pyxlimg is for extracting images from xlsx. It has a high affinity with other libraries. This is because you can treat the image as an instance of Pillow.Image.
Concept
Images are difficult to handle with xlwings, openpyxl, and pylightxl. Especially linter and type annotation are difficult. Complement these. And the goal is to make it easier to do OCR etc. using xlsx in Python.
Install
Recommended to install using pip.
pip install pyxlimg
Usage
from PIL import Image
from pyxlimg import xlimg
TestBookName = "./your-test-data/TestBook.xlsx"
if __name__ == "__main__":
TargetBook: xlimg.ImageBook = xlimg.ImageBook()
TargetBook.open(TestBookName)
print("This book named '" + TargetBook.name + "'.")
print("This book has " + len(TargetBook.Sheets) + " sheets.")
print("First sheet name is '" + TargetBook.Sheets[0].displayName + "'.")
print("First sheet has " + len(TargetBook.Sheets[0].Pictures + " pictures.")
TargetBook.Sheets[1].Pictures[0].Image().show() # Show you the Image
In this way, you can easily assign images to variable.
DisplayImage: Image = TargetBook.Sheets[1].Pictures[0].Image()
DisplayImage.show() # Show you the Image too.
FAQ
What image format does this support?
If it is supported by Pillow, it can be supported. If the original image is in a commonly used format such as png, jpg, bmp when pasted or inserted into xlsx.
What kind of library is this supposed to be used with?
For example, Tesseract OCR, pylightxl, openpyxl, matplotlib. It is also ideal for matching with other pillow related libraries.
Build
How to build package.
poetry install
poetry shell
poetry build
How to build sphinx docs.
sphinx-apidoc -f -o ./docs ./pyxlimg
sphinx-build -b html ./docs ./docs/_build
In Windows
pyenv install 3.11.0
pyenv local 3.11.0
poetry install
poetry shell
pytest
poetry build
Docker
docker compose up -d --build
docker compose logs -f
Release files for pyxlimg 0.1.6
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pyxlimg-0.1.6.tar.gz | 4.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pyxlimg-0.1.6-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 9.3 kB
Release files / pyxlimg-0.1.6.tar.gz
| Download URL | pyxlimg-0.1.6.tar.gz |
|---|---|
| Size | 4.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
148e9a7b1a4c6d8b1248af7ceeb233dd06a2c1c37c9879ce44571a7225d0404e
|
|
BLAKE2b-256 checksum How to use checksums |
ea7716fb094ea7c02117db941193c8ab43cf3a7a1f3368c51e78d9fa6752c42e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.7.1 CPython/3.11.6 Windows/10
|
Release files / pyxlimg-0.1.6-py3-none-any.whl
| Download URL | pyxlimg-0.1.6-py3-none-any.whl |
|---|---|
| Size | 4.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
d6d6d5faf5b86db9eefe5b38061d7e4dea8133590959d9b415e82bf61410b90a
|
|
BLAKE2b-256 checksum How to use checksums |
6e819b904e5c79f576f3551825ebb65d373a1d587e5af6d5a8ec402c482248b9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.7.1 CPython/3.11.6 Windows/10
|