Created
November 28, 2020 12:37
-
-
Save JayateerthDambal/1d434e13751a1e8b4b095a2db3ef0c8a to your computer and use it in GitHub Desktop.
Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import qrcode | |
def qr_generate(url, saved_img = 'QrCode.png'): | |
img = qrcode.make(url) | |
img.save(saved_img) | |
return img | |
url = "https://techfandome2020.netlify.app/" | |
qr_generate(url) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment