Go to file
Carlos G?lvez 7dde0d559d Allow humans to introduce the char ? as separator for datamatrix elements.
#039150
2019-11-06 13:18:02 +01:00
barcodenumber Allow humans to introduce the char ? as separator for datamatrix elements. 2019-11-06 13:18:02 +01:00
CHANGELOG Initial release 2013-03-19 14:59:55 +01:00
COPYRIGHT Initial release 2013-03-19 14:59:55 +01:00
INSTALL Initial release 2013-03-19 14:59:55 +01:00
LICENSE Initial release 2013-03-19 14:59:55 +01:00
MANIFEST.in Initial release 2013-03-19 14:59:55 +01:00
README Add gs1_datamatrix 2019-09-26 15:41:05 +02:00
TODO Add generic codes (return every True) 2013-03-19 15:28:07 +01:00
setup.py Allow humans to introduce the char ? as separator for datamatrix elements. 2019-11-06 13:18:02 +01:00

README

barcodenumber
=============

Python module to validate product codes.

Codes
-----

* code39
* ean (ean12)
* ean8
* ean13
* gtin (ean13)
* gtin14
* gs1_datamatrix
* isbn
* isbn10
* isbn13
* upc (ean12)



Nutshell
--------

Here a simple example to validate product codes::

    >>> import barcodenumber
    >>> barcodenumber.check_code('ean13','9788478290222')
    True
    >>> barcodenumber.barcodes()
    ['CODE39', 'EAN', 'EAN13', 'EAN8', 'GS1', 'GTIN', 'ISBN', 'ISBN10', 'ISBN13',
    'ISSN', 'JAN', 'PZN', 'UPC', 'UPCA']