Generating QR Codes with Python

 Install the required module:

pip install qrcode

 

Upon running the script the image is generated in the same directory.

import qrcode

qr = qrcode.make("https://www.jaimedcsilva.com")
qr.save("jaimedcsilva.png")