more little things
This commit is contained in:
parent
b4d7e200a3
commit
4447e6cd1f
9 changed files with 25 additions and 22 deletions
|
@ -8,9 +8,9 @@ def qrcode(inp):
|
|||
"""qrcode [link] returns a link for a QR code."""
|
||||
|
||||
args = {
|
||||
"cht": "qr", # chart type
|
||||
"cht": "qr", # chart type (QR)
|
||||
"chs": "200x200", # dimensions
|
||||
"chl": inp
|
||||
"chl": inp # data
|
||||
}
|
||||
|
||||
link = http.prepare_url("http://chart.googleapis.com/chart", args)
|
||||
|
|
Reference in a new issue