Library for encoding and decoding QR codes using Python

Does python have a library for encoding and decoding qr codes. I was looking for some old questions on stackoverflow, but some links are dead, and some links that they gave did not work. offer me any working python qr code library.

thanks

+6
source share
3 answers

Try https://github.com/lincolnloop/python-qrcode . It works only to generate codes.

+2
source

Try pyqrnative . He does not develop very actively, but does what he has to do. The main problem is that the documentation does not exist. A very brief example can be seen in the test code of the project, and ros.org generated an overview of the available classes and functions.

+1
source

New guy on the block: http://pyqrcode.sourceforge.net/ . Must compile to have it, but it seems good.

0
source

Source: https://habr.com/ru/post/899420/


All Articles