import qrcode  
# generating a QR code using the make() function  
qr_img = qrcode.make("https://stupendous-cheesecake-5c5aa3.netlify.app")  
# saving the image file  
qr_img.save("qr-img.jpg")