Created
March 31, 2018 08:01
-
-
Save elbosso/6dcd7e129e23830b935ab08b5d18884d to your computer and use it in GitHub Desktop.
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 | |
import sys | |
import pyqrcode | |
program_name = sys.argv[0] | |
argument = sys.argv[1] | |
url = pyqrcode.create(argument) | |
print(url.terminal(quiet_zone=1)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment