Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Library for encoding and decoding QR Codes using Python

Tags:

python

qr-code

Is there any library in python for encoding and decoding qr codes. i have searched some old questions in stackoverflow but some links are dead and some links they have given were not working. suggest me for any python working qr-code library.

Thanks

like image 920
Dungeon Hunter Avatar asked Oct 16 '11 21:10

Dungeon Hunter


2 Answers

Try https://github.com/lincolnloop/python-qrcode. It only works for generation of codes though.

like image 94
PyRulez Avatar answered Sep 22 '22 00:09

PyRulez


Try pyqrnative. It's not really actively being developed, but does what it should do. The main issue with it is that the documentation is kind of non-existent. A very brief example can be seen in the project's test code, while ros.org has generated an overview of the available classes and functions.

like image 39
jro Avatar answered Sep 22 '22 00:09

jro