This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/plugins/qr.py

16 lines
359 B
Python
Raw Normal View History

2013-08-05 11:32:53 +02:00
# 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."
2013-08-05 12:30:58 +02:00
link = "http://blny.tk/qr.php?q=%s" % http.get_url(inp)
2013-08-05 11:32:53 +02:00
try:
2013-08-05 12:30:58 +02:00
return web.try_isgd(link)
2013-08-05 11:32:53 +02:00
except (web.ShortenError, http.HTTPError):
return link