Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

qrcode generator using python for windows

Tags:

python

qr-code

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

I didn't get anywhere.

Please help me.

Thanks, manu

like image 834
manu Avatar asked Oct 08 '10 06:10

manu


People also ask

Can Python generate QR code?

Python has a library “qrcode” for generating QR code images. It can be installed using pip. Approach: Import module.

How do I create a QR code in Windows?

In Chrome on Windows, macOS or Chrome OS, right-click (or, with a touchpad: two finger tap) and select “Create QR code for this page” (as shown on the left) to generate a QR code you may scan or download (as shown on the right).

How do I import a QR code into Python?

Installing the Python qrcode package We can install the qrcode package with the help of the pip installer using the following command: Syntax: $ pip install qrcode.


2 Answers

either you have to

  1. Compile it yourself; or
  2. if you only need to generate the codes (i.e. encoding but no decoding), use pyqrencode that you can get from PyPi (e.g. pip install pyqrencode)

If you don't have pip, I suggest you start by installing setuptools and then use easy_install to install pip (of course, you can cut corners by just doing an easy_install pyqrencode

like image 115
Kimvais Avatar answered Sep 30 '22 03:09

Kimvais


Try pyqrnative it's a Python port of an existing Javascript library to generate QR Codes.

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

  • Christian
like image 41
Christian Joudrey Avatar answered Sep 30 '22 03:09

Christian Joudrey