Skip to content

Instantly share code, notes, and snippets.

View adieltan's full-sized avatar
🇲🇾

Adiel Tan adieltan

🇲🇾
View GitHub Profile
@adieltan
adieltan / qr.py
Created July 2, 2021 12:20
QR Creator
#pip install qrcode[pil]
import os
import qrcode
text = input("Input text:")
ver = int(input("Version (1-40):"))
qr = qrcode.QRCode(
version=ver,