Created
January 8, 2021 19:33
-
-
Save JayantGoel001/2797c11f813a4724cf749f4b30711ab9 to your computer and use it in GitHub Desktop.
Generating QR Code using pyqrcode and pypng
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
# pip install pypng | |
import pyqrcode | |
data = "Hi!! I am Jayant Goel." | |
img = pyqrcode.create(data) | |
img.png("Jayant Goel.png", scale=10) |
Author
JayantGoel001
commented
Jan 8, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment