Skip to content

Instantly share code, notes, and snippets.

@JayantGoel001
Created January 8, 2021 19:33
Show Gist options
  • Save JayantGoel001/2797c11f813a4724cf749f4b30711ab9 to your computer and use it in GitHub Desktop.
Save JayantGoel001/2797c11f813a4724cf749f4b30711ab9 to your computer and use it in GitHub Desktop.
Generating QR Code using pyqrcode and pypng
# pip install pypng
import pyqrcode
data = "Hi!! I am Jayant Goel."
img = pyqrcode.create(data)
img.png("Jayant Goel.png", scale=10)
@JayantGoel001
Copy link
Author

Jayant Goel

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment