Metadata-Version: 2.1
Name: pyzint
Version: 0.0.9
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.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython

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
z = Zint("[255]1111111111122", BARCODE_RSS_EXP)
..

Generate bmp image
.. code-block:: python
z.render_bmp()
..

Generate svg image
.. code-block:: python
z.render_bmp()
..


