Real time Barcode and QR Code scanner Edit
Project description
zbarcam
Real time Barcode and QR Code scanner using the camera. It's built on top of Kivy and pyzbar.
How to use
Simply import and instanciate ZBarCam in your kvlang file and access its symbols property.
#:import ZBarCam kivy_garden.zbarcam.ZBarCam
#:import ZBarSymbol pyzbar.pyzbar.ZBarSymbol
BoxLayout:
orientation: 'vertical'
ZBarCam:
id: zbarcam
# optional, by default checks all types
code_types: ZBarSymbol.QRCODE, ZBarSymbol.EAN13
Label:
size_hint: None, None
size: self.texture_size[0], 50
text: ', '.join([str(symbol.data) for symbol in zbarcam.symbols])
A full working demo is available in src/main.py.
Install
Ubuntu
Install system requirements (Ubuntu 18.04):
make system_dependencies
Install zbarcam:
pip install zbarcam
Then import it in your Python code via:
from kivy_garden.zbarcam import ZBarCam
Android
Build for Android via buildozer, see buildozer.spec.
Contribute
To play with the project, install system dependencies and Python requirements using the Makefile.
make
Then verify everything is OK by running tests.
make test
make uitest
Troubleshooting
Android ValueError: Empty module name
More likely an import issue in your .kv file.
Try to from zbarcam import ZBarCam in your main.py to see the exact error.
It's common to forget Pillow in buildozer.spec requirements section.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file zbarcam-2020.524.tar.gz.
File metadata
- Download URL: zbarcam-2020.524.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a2f3c85a271b93db75bfef867baa5009486b3594c5000641c0d0e5f10d9cee3
|
|
| MD5 |
5b3bccb149a415bdee7dd95903c64807
|
|
| BLAKE2b-256 |
90704f1795ad79f56236fe2055421e07b351c43ee61dfdf4db356f3e7ab05c90
|
File details
Details for the file zbarcam-2020.524-py3-none-any.whl.
File metadata
- Download URL: zbarcam-2020.524-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
189b2df8d2dc1af4919c89c360d8aa42f0e28e6d456aa159852d2a8c03b3dfcd
|
|
| MD5 |
88bf9916ca5a4281476b3115cbcc600e
|
|
| BLAKE2b-256 |
cb211ddb590e33c5d10df960672ba8f3586b199a37089f0fcef01268762fa95c
|