Skip to content

Instantly share code, notes, and snippets.

@ahmedshahriar
Created February 14, 2021 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmedshahriar/762469ea85934a2a792987d7d99b28d5 to your computer and use it in GitHub Desktop.
Save ahmedshahriar/762469ea85934a2a792987d7d99b28d5 to your computer and use it in GitHub Desktop.
# Install qrcode https://pypi.org/project/qrcode/
# pip install qrcode[pil]
import qrcode
qr = qrcode.QRCode(
version=1,
error_correction=qrcode.constants.ERROR_CORRECT_L,
box_size=10,
border=4,
)
qr.add_data('www.abc.com')
qr.make(fit=True)
img = qr.make_image(fill_color="black", back_color="white")
img
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment