Metadata-Version: 2.4
Name: gsixel
Version: 0.0.6
Summary: GSixel cross‑platform analog of Sixel
Author-email: GPGStudio <gpgstudio.original@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/GPGSTUDIO/GSIXEL
Project-URL: Repository, https://github.com/GPGSTUDIO/GSIXEL
Project-URL: Bug Reports, https://github.com/GPGSTUDIO/GSIXEL/issues
Keywords: Sixel,Image,Convert,platform,
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Classifier: Programming Language :: Python :: 3.16
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pillow==12.1.1
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Dynamic: license-file

# **GSixel cross‑platform analog of Sixel!**

Installing:
```bash
pip install gsixel
```

Usage:
```
import gsixel

# Convert file in variable
with open('yourfile.png','rb') as f:
	data = f.read()
print(gsixel.convert(data))

# Convert file in disk
print(gsixel.convert('yourfile.png'))
```

In latest version:
> Optimization
