We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 016128c commit 6ca7115Copy full SHA for 6ca7115
qr.py
@@ -0,0 +1,11 @@
1
+import pyqrcode
2
+from pyqrcode import QRCode
3
+
4
+# String which represent the QR code
5
+s = "https://fueler.io/arjun_ms"
6
7
+# Generate QR code
8
+url = pyqrcode.create(s)
9
10
+# Create and save the png file naming "myqr.png"
11
+url.svg("myyoutube.svg", scale = 8)
0 commit comments