agarza/dev-garza/: pybarcodes-0.2.1 metadata and description
A Python barcode generator
author | Vitaman02 |
classifiers |
|
license | MIT |
requires_dist |
|
requires_python | >=3.6.0 |
Because this project isn't in the mirror_whitelist
,
no releases from root/pypi are included.
File | Tox results | History |
---|---|---|
pybarcodes-0.2.1-py3-none-any.whl
|
|
This is a python package to create and read barcodes
Installing
Python 3.6.0 or higher is required
To install the library you can run the following command:
# Linux/MacOS python3 -m pip install --upgrade pybarcodes # Windows py -3 -m pip install --upgrade pybarcodes
Quick Example
from pybarcodes.ean import EAN13 CODE = "012345678905" barcode = EAN13(CODE) barcode.show()
This is all the code you need to generate a barcode.
Output Image:
