Created
February 15, 2021 14:15
-
-
Save ilhamarrouf/9acc7a5fdba06a85d3f1d19e267f941b to your computer and use it in GitHub Desktop.
Generate Simple QR Code With PyQRCode
This file contains hidden or 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 pyqrcode | |
data = input('Please enter some text or link to generate QR code : ') | |
qr = pyqrcode.create(data) | |
qr.svg('qrcode.svg', scale=8) |
This file contains hidden or 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
PyQRCode==1.2.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment