linx.li uploader
parent
2b034e7a41
commit
babaa9fb9f
|
@ -0,0 +1,32 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
"""
|
||||||
|
linx.py - linx.li uploader
|
||||||
|
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
|
||||||
|
"""
|
||||||
|
|
||||||
|
from urllib.error import HTTPError
|
||||||
|
import web
|
||||||
|
import json
|
||||||
|
|
||||||
|
def linx(phenny, input):
|
||||||
|
""".linx <url> - Upload a URL to linx.li."""
|
||||||
|
|
||||||
|
url = input.group(2)
|
||||||
|
|
||||||
|
try:
|
||||||
|
req = web.post("http://linx.li/vtluug", {'url': url})
|
||||||
|
except (HTTPError, IOError):
|
||||||
|
phenny.say("THE INTERNET IS FUCKING BROKEN. Please try again later.")
|
||||||
|
return
|
||||||
|
|
||||||
|
data = json.loads(req)
|
||||||
|
if len(data) <= 0 or not data['success']:
|
||||||
|
phenny.reply('Sorry, upload failed.')
|
||||||
|
return
|
||||||
|
|
||||||
|
phenny.reply(data['url'])
|
||||||
|
linx.rule = (['linx'], r'(.*)')
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
print(__doc__.strip())
|
||||||
|
|
Loading…
Reference in New Issue