code:
import qrcode #importing the QR module
data='https://www.tutorialspoint.com' # storing url in data
filename="site.png"
img=qrcode.make(data) # create qrcode using make()
img.save('abc') # saving image
#shorts #programming #python