commit
66fd6ca1d5
1 changed files with 14 additions and 0 deletions
14
plugins/qr.py
Normal file
14
plugins/qr.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Plugin by https://github.com/Mu5tank05
|
||||
from util import hook, web, http
|
||||
|
||||
|
||||
@hook.command('qr')
|
||||
@hook.command
|
||||
def qrcode(inp, bot=None):
|
||||
"qrcode [link] returns a link for a QR code."
|
||||
|
||||
link = "http://blny.tk/qr.php?q=%s" % http.quote_plus(inp)
|
||||
|
||||
return web.try_isgd(link)
|
||||
|
||||
|
Reference in a new issue