We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent affeec5 commit 358f2e0Copy full SHA for 358f2e0
qr_code_generator.py
@@ -0,0 +1,7 @@
1
+import qrcode
2
+
3
+site_url = input('Enter the url of the website: ')
4
5
+img = qrcode.make(site_url)
6
7
+img.save('qr.png')
0 commit comments