Python wrapper for ZXing Java library
Project description
pyzxing
English | 简体中文
A Python wrapper of ZXing library. python-zxing does not work properly and is out of maintenance. So I decide to create this repository so that Pythoneers can take advantage of ZXing library with minimum effort.
Features
- Super easy to get hands on ZXing with Python
- Structured outputs
- Scan multiple barcodes in one picture
- Scan multiple pictures in parallel, which speeds up 77%
Installation
Installing from Github source is recommended :
git clone https://github.com/ChenjieXu/pyzxing.git
cd pyzxing
python setup.py install
It is also possible to install from PyPI:
pip install pyzxing
Build ZXing Library
A ready-to-go jar file is available with release, but I can not guarantee that this file will work properly on your PC. You may run test script before building ZXing. Pyzxing will download compiled Jar file automatically and call unit test. For those who haven't installed Java, I strongly recommend you to install openjdk8.
python -m unittest src.test_barcode
If failed, build ZXing using following commands.
git submodule init
git submodule update
cd zxing
mvn install -DskipTests
cd javase
mvn -DskipTests package assembly:single
Quick Start
from pyzxing import BarCodeReader
reader = BarCodeReader()
results = reader.decode('/PATH/TO/FILE')
# Or file pattern for multiple files
results = reader.decode('/PATH/TO/FILES/*.png')
print(results)
Or you may simply call it from command line
python scanner.py -f /PATH/TO/FILE
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyzxing-0.3.3.tar.gz
.
File metadata
- Download URL: pyzxing-0.3.3.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1e3efec737c3a7a454a2d778752b0a38347fb3e5753a5d7e535f2fa874c9df8 |
|
MD5 | 517821856f8725b6f8e1b73742ad3d21 |
|
BLAKE2b-256 | 7e89ca66837abed917c225241b8e81885181a69ba51bdc82aa6118db8a8d3576 |
File details
Details for the file pyzxing-0.3.3-py3-none-any.whl
.
File metadata
- Download URL: pyzxing-0.3.3-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a797c78791907444f9784d1ed0d028bc18806e3e5b56697f827d064788f0e22 |
|
MD5 | 14510eff5248d378eace987e976633ef |
|
BLAKE2b-256 | ef06e42a7eb5065ebf491e053cec38c939a944c34692dc781e78824398fe377a |