DEV Community

Wulfi
Wulfi

Posted on

GENERATE A QR Code with just three lines in PYTHON

With Python, you can generate a QR code with just three lines of code and get it saved on your PC for use.

import qrcode
img = qrcode.make("Wulfi")
img.save("img.jpg")
Enter fullscreen mode Exit fullscreen mode

Latest comments (0)