Metadata-Version: 2.2
Name: zint-bindings
Version: 1.2.2
Summary: A barcode encoding library supporting over 50 symbologies.
Keywords: QR,qrcode,datamatrix,barcode,generator,gs1,code128,aztec,pdf417,ean,code93,maxicode,microqr,rmqr
Author: Anna Zhukova
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
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 :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Communications
Classifier: Topic :: Multimedia :: Graphics
Project-URL: Documentation, https://zint-bindings.readthedocs.io/
Project-URL: Repository, https://github.com/bindreams/zint-bindings
Project-URL: Issues, https://github.com/bindreams/zint-bindings/issues
Requires-Python: >=3.9
Provides-Extra: test
Requires-Dist: pytest>=7; extra == "test"
Requires-Dist: pytest-sugar; extra == "test"
Requires-Dist: mypy; platform_python_implementation == "CPython" and extra == "test"
Provides-Extra: docs
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: myst-parser; extra == "docs"
Requires-Dist: furo; extra == "docs"
Requires-Dist: sphinx-design; extra == "docs"
Requires-Dist: sphinx-copybutton; extra == "docs"
Requires-Dist: sphinx_substitution_extensions; extra == "docs"
Description-Content-Type: text/markdown

# Zint Bindings
This project provides Python bindings for [Zint](https://www.zint.org.uk/): a cross-platform open source barcode generating solution.

Features:
- 50+ barcode types;
- Text or binary data encoding;
- Export image to:
	- PNG;
	- BMP;
	- GIF;
	- PCX;
	- TIF;
	- EMF;
	- EPS;
	- SVG;
- Configurable options:
	- Size;
	- Color;
	- Error correction;
	- Rotation;
	- ...and much more depending on the barcode type.

```python
>>> from zint import Symbol, Symbology
>>> x = Symbol()
>>> x.symbology = Symbology.QRCODE
>>> x.encode("https://github.com/bindreams/zint-bindings")
>>> x.outfile = "qrcode.png"
>>> x.print()  # All done!

```

Install the package with:
```sh
pip install zint-bindings
```
Detailed instructions and usage examples are available in the [official documentation](https://zint-bindings.readthedocs.io/en/stable/getting-started.html).

## License
<img align="right" width="150px" height="150px" src="https://www.apache.org/foundation/press/kit/img/the-apache-way-badge/Indigo-THE_APACHE_WAY_BADGE-rgb.svg">

Copyright 2024-2025, Anna Zhukova

This project is licensed under the Apache 2.0 license. The license text can be found at [LICENSE.md](/LICENSE.md).

These bindings are based on the API portion of the Zint project, which is licensed under the BSD 3-clause license. See more information at [src/zint/external/zint/LICENSE](/src/zint/external/zint/LICENSE).
