1

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?

eyllanesc
  • 235,170
  • 19
  • 170
  • 241
Hari
  • 1,545
  • 1
  • 22
  • 45

1 Answers1

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