Created
October 12, 2017 02:57
-
-
Save mattconnell/14f7d8e2d53ca22da23a96083eacb65f to your computer and use it in GitHub Desktop.
Quick and dirty QR code generation
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
#!/usr/bin/python | |
from sys import argv | |
import pyqrcode | |
print( pyqrcode.create(argv[1]).terminal() ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment