Metadata-Version: 2.1
Name: pyzint
Version: 0.1.10
Summary: Python ZINT bindings
Home-page: UNKNOWN
License: UNKNOWN
Project-URL: Source, https://github.com/Pavkazzz/pyzint
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Internet
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
License-File: LICENSE

pyzint
======
.. image:: https://github.com/pavkazzz/pyzint/workflows/Python%20package/badge.svg
    :target: https://github.com/Pavkazzz/pyzint/actions
    :alt: GitHub CI

.. image:: https://img.shields.io/pypi/v/pyzint.svg
    :target: https://pypi.python.org/pypi/pyzint/
    :alt: Latest Version

.. image:: https://img.shields.io/pypi/wheel/pyzint.svg
    :target: https://pypi.python.org/pypi/pyzint/

.. image:: https://img.shields.io/pypi/pyversions/pyzint.svg
    :target: https://pypi.python.org/pypi/pyzint/

.. image:: https://img.shields.io/pypi/l/pyzint.svg
    :target: https://pypi.python.org/pypi/pyzint/


Python c-api binding to zint c library


Example
=======

Create main object zint

.. code-block:: python

   from pyzint import Barcode

   z = Barcode.RSS_EXP("[255]1111111111122")


Generate bmp image

.. code-block:: python

   z.render_bmp()


Generate svg image

.. code-block:: python

   z.render_bmp()



See `more examples here`_

.. _more examples here: https://github.com/Pavkazzz/pyzint/blob/master/examples/README.md


