Skip to content

Instantly share code, notes, and snippets.

@mattconnell
Created October 12, 2017 02:57
Show Gist options
  • Save mattconnell/14f7d8e2d53ca22da23a96083eacb65f to your computer and use it in GitHub Desktop.
Save mattconnell/14f7d8e2d53ca22da23a96083eacb65f to your computer and use it in GitHub Desktop.
Quick and dirty QR code generation
#!/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