xbmcbackup/resources/lib/tinyurl.py

13 lines
368 B
Python
Raw Normal View History

2019-11-25 15:19:57 -06:00
# this is duplicated in snipppets of code from all over the web, credit to no one
# in particular - to all those that have gone before me!
2019-11-25 15:56:59 -06:00
from future.moves.urllib.request import urlopen
2017-01-30 12:51:36 -06:00
def shorten(aUrl):
tinyurl = 'http://tinyurl.com/api-create.php?url='
2019-08-27 15:03:43 -05:00
req = urlopen(tinyurl + aUrl)
2017-01-30 12:51:36 -06:00
data = req.read()
2019-11-25 15:19:57 -06:00
# should be a tiny url
2017-01-30 12:51:36 -06:00
return str(data)