agarza/dev-garza/: pybarcodes-0.2.1 metadata and description

Homepage | Simple index

A Python barcode generator

author Vitaman02
classifiers
  • Development Status :: 5 - Production/Stable
  • License :: OSI Approved :: MIT License
  • Intended Audience :: Developers
  • Natural Language :: English
  • Operating System :: OS Independent
  • Programming Language :: Python
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Topic :: Multimedia :: Graphics
  • Topic :: Software Development :: Libraries
  • Topic :: Software Development :: Libraries :: Python Modules
  • Topic :: Utilities
license MIT
requires_dist
  • Pillow (>=8.0.1)
  • numpydoc (==1.1.0)
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
Size
8 KB
Type
Python Wheel
Python
3
Documentation Status PyPI version info PyPI supported Python versions

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:

Image of Barcode