Primer commit
This commit is contained in:
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,20 @@
|
||||
Copyright (c) 2017-2020 Hugo Osvaldo Barrera <hugo@barrera.io>, et al
|
||||
Copyright (c) 2010-2013 Thorsten Weimann
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||
of the Software, and to permit persons to whom the Software is furnished to do
|
||||
so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
@@ -0,0 +1,71 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: python-barcode
|
||||
Version: 0.15.1
|
||||
Summary: Create standard barcodes with Python. No external modules needed. (optional Pillow support included).
|
||||
Home-page: https://github.com/WhyNotHugo/python-barcode
|
||||
Author: Hugo Osvaldo Barrera et al
|
||||
Author-email: hugo@barrera.io
|
||||
License: MIT
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Environment :: Console
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
Classifier: Operating System :: OS Independent
|
||||
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: Topic :: Multimedia :: Graphics
|
||||
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
||||
Provides-Extra: images
|
||||
Requires-Dist: pillow ; extra == 'images'
|
||||
|
||||
python-barcode
|
||||
==============
|
||||
|
||||
.. image:: https://action-badges.now.sh/WhyNotHugo/python-barcode
|
||||
:target: https://github.com/WhyNotHugo/python-barcode/actions
|
||||
:alt: CI status
|
||||
|
||||
.. image:: https://readthedocs.org/projects/python-barcode/badge/
|
||||
:target: https://python-barcode.rtfd.org/
|
||||
:alt: documentation
|
||||
|
||||
.. image:: https://img.shields.io/pypi/v/python-barcode.svg
|
||||
:target: https://pypi.python.org/pypi/python-barcode
|
||||
:alt: version on pypi
|
||||
|
||||
.. image:: https://img.shields.io/pypi/dm/python-barcode.svg
|
||||
:target: https://pypi.python.org/pypi/python-barcode
|
||||
:alt: downloads
|
||||
|
||||
.. image:: https://img.shields.io/pypi/l/python-barcode.svg
|
||||
:target: https://github.com/WhyNotHugo/python-barcode/blob/main/LICENCE
|
||||
:alt: licence
|
||||
|
||||
**python-barcode** provides a simple way to create barcodes in Python.
|
||||
|
||||
There are no external dependencies when generating SVG files.
|
||||
Pillow is required for generating images (e.g.: PNGs).
|
||||
|
||||
Support Python 3.7 to 3.11.
|
||||
|
||||
.. image:: example-ean13.png
|
||||
:target: https://github.com/WhyNotHugo/python-barcode
|
||||
:alt: python-barcode
|
||||
|
||||
Documentation
|
||||
-------------
|
||||
|
||||
Full documentation is published at http://python-barcode.rtfd.io/
|
||||
|
||||
Licence
|
||||
-------
|
||||
|
||||
python-barcode is licensed under the MIT licence. See LICENCE for details.
|
||||
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
../../../bin/python-barcode,sha256=J5Ik6nh-6lSILoldSZNCn68o4KAgtuC7Si-Pg2Dk_W4,251
|
||||
barcode/__init__.py,sha256=5bVCaaKpugcXPV2BibCl6pgISVT-_Cvgmjry19xBYfI,3574
|
||||
barcode/__pycache__/__init__.cpython-311.pyc,,
|
||||
barcode/__pycache__/base.cpython-311.pyc,,
|
||||
barcode/__pycache__/codabar.cpython-311.pyc,,
|
||||
barcode/__pycache__/codex.cpython-311.pyc,,
|
||||
barcode/__pycache__/ean.cpython-311.pyc,,
|
||||
barcode/__pycache__/errors.cpython-311.pyc,,
|
||||
barcode/__pycache__/isxn.cpython-311.pyc,,
|
||||
barcode/__pycache__/itf.cpython-311.pyc,,
|
||||
barcode/__pycache__/pybarcode.cpython-311.pyc,,
|
||||
barcode/__pycache__/upc.cpython-311.pyc,,
|
||||
barcode/__pycache__/version.cpython-311.pyc,,
|
||||
barcode/__pycache__/writer.cpython-311.pyc,,
|
||||
barcode/base.py,sha256=bScTwTS0OMRu1iggVsjgvpgSe6oj7cXm9f2bAwEau8s,2957
|
||||
barcode/charsets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
barcode/charsets/__pycache__/__init__.cpython-311.pyc,,
|
||||
barcode/charsets/__pycache__/codabar.cpython-311.pyc,,
|
||||
barcode/charsets/__pycache__/code128.cpython-311.pyc,,
|
||||
barcode/charsets/__pycache__/code39.cpython-311.pyc,,
|
||||
barcode/charsets/__pycache__/ean.cpython-311.pyc,,
|
||||
barcode/charsets/__pycache__/itf.cpython-311.pyc,,
|
||||
barcode/charsets/__pycache__/upc.cpython-311.pyc,,
|
||||
barcode/charsets/codabar.py,sha256=nZ30LKdh0jlC7NxkkPzd86Iqsnp_hOw8i6Mes2Q5JVU,479
|
||||
barcode/charsets/code128.py,sha256=XyliCFjPRZCLZiqRcsHMTs581sUXRYUOGBnCSo9ddOQ,3408
|
||||
barcode/charsets/code39.py,sha256=ZF8-JZHW6e0CE91dwNutbVw2ctenIMAUZhpQntnuY-I,1317
|
||||
barcode/charsets/ean.py,sha256=Alj8ZmwXAg0Kuy9szxdLH-k_ldBMibV0Xv3ea4UAxck,825
|
||||
barcode/charsets/itf.py,sha256=GHgBY8pjy9o_M0bAZuCCLZ9t_zIEYaY4VOfljcD7ZZ8,239
|
||||
barcode/charsets/upc.py,sha256=h4PBut4zOFKRKm-fkNt9PzjQgsv31HN5ZTAFq2EuGl8,458
|
||||
barcode/codabar.py,sha256=68Fla237KC-YIs4ce3jr8ezgp__OuNwFa7nNfQ7Jylc,2217
|
||||
barcode/codex.py,sha256=7ydkEKqlRtdIgC8VQcMdArbTCzDvlTDsleYhnRKIsqo,8295
|
||||
barcode/ean.py,sha256=y29sRnHJWv3YfRqU3y7qZ9_5QyNkX9dd7S3SVHkULuc,6639
|
||||
barcode/errors.py,sha256=MuylM_HtQW2KXloKB_HlwTzqr3rrTM1bUR_ruvLU25c,662
|
||||
barcode/fonts/DejaVuSansMono.ttf,sha256=v75F-6oUAS_ygis_rGeLib3WVXcKrBlr2pzNi6SzHQs,321524
|
||||
barcode/isxn.py,sha256=j9B4kg7kn71y0NsjFOobQIWfECxNSSPvQq1RFh9OEsk,3593
|
||||
barcode/itf.py,sha256=NwhxQ7OZ23V0B33vuKtO2m_LZx6SJyliQHkg1YGBpSc,2226
|
||||
barcode/pybarcode.py,sha256=mx7SZBpi7B-h9wOLEnyTwil7sJF2NU0u0YxfdCBVTB8,3401
|
||||
barcode/upc.py,sha256=XYBoTt_SkFJPecnMOrIATSxNgMtaZ1avi6_fm-qAV8M,3018
|
||||
barcode/version.py,sha256=YUSnLle6wPZ2fFLojhyqM3o-bBAPjaJVA5jzwxdDW_w,162
|
||||
barcode/writer.py,sha256=XPrfagMIJX-9D_2aBcDvuIVEq3hoxMsEND6JL25TybY,16351
|
||||
python_barcode-0.15.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
python_barcode-0.15.1.dist-info/LICENCE,sha256=d_PtrfytKUMaYpUinFkvXNd9aUguAmh_0Db447oea8M,1135
|
||||
python_barcode-0.15.1.dist-info/METADATA,sha256=DKoM8YV6gcx5zkb-AzfP37JUNdZudtm0qmGxryy-2hM,2338
|
||||
python_barcode-0.15.1.dist-info/RECORD,,
|
||||
python_barcode-0.15.1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
||||
python_barcode-0.15.1.dist-info/entry_points.txt,sha256=o3UgtcKMeTJJWDDLqNH9117FjV_EurD6Wci4UgFljIM,59
|
||||
python_barcode-0.15.1.dist-info/top_level.txt,sha256=9je9uAx-6If9_--f_JipSJNQtNSMguKDPsSF-MbsxUs,8
|
||||
@@ -0,0 +1,5 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.40.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
[console_scripts]
|
||||
python-barcode = barcode.pybarcode:main
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
barcode
|
||||
Reference in New Issue
Block a user