I am working on asset management app using Django, Now I want to create barcodes for each asset. On the scanning of the barcode, I need to get all the information about the asset, which is the best library to achieve this?
Asked
Active
Viewed 2,711 times
1 Answers
3
Use pybarcode and generate the barcode as SVG: http://packages.python.org/pyBarcode/barcode.html#creating-barcodes-as-svg
No problem of image quality in that case. To read: https://github.com/dynamsoft-dbr/django-barcode-reader/blob/master/README.md

Neeraj Nair
- 195
- 1
- 10
-
On Scanning of the barcode, i need to redirect user to detail page how can i achieve that? – Hari Jul 22 '18 at 03:47
-
that link also has code example for barcode creation, not for reading/scanning barcodes. – Hari Jul 22 '18 at 03:53
-
Is that helpful? – Neeraj Nair Jul 22 '18 at 04:07
-
looks fine, let me integrate and check with my project – Hari Jul 22 '18 at 04:10
-
Is it a web application or an android app? – Neeraj Nair Jul 22 '18 at 06:12
-
web application(Django). – Hari Jul 22 '18 at 06:14
-
For example, I need to scan the barcode, once scanned I need to redirect to view page of resource which I scanned. – Hari Jul 22 '18 at 06:17
-
look interesting, let me check – Hari Jul 22 '18 at 07:19