Python windows qrcode generator

I am looking for a qrcode generator for a python window version. Can anyone help me find out.

I'm not going anywhere.

Please help me.

Thanks Mana

+3
source share
5 answers

either you have to

  • Compile it yourself; or
  • if you only need to generate codes (e.g. encoding, but without decoding), use pyqrencode , which you can get from PyPi (e.g., pip install pyqrencode)

If you don't have pip , I suggest starting with installing setuptools , and then use easy_installpip to install (of course, you can cut corners just by doingeasy_install pyqrencode

+4

pyqrnative Python JavaScript QR-.

http://code.google.com/p/pyqrnative/

  • Christian
+4

The self-proclaimed hacker pyqrcode seems to do both decoding and encoding. The coding is in C ++, and the decoding is in Java. Python glues them together.

0
source

pyqrnative works very well for me. I'm sorry that I can not find the documentation in English. I would like to know the relationship between the size of the data content and the first argument of typeNumber.

0
source

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


All Articles