Skip to content

Commit f51c39e

Browse files
committed
Merge branch 'qr' into email-slicer
2 parents b17c5fa + 6ca7115 commit f51c39e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

qr.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)