mirror of
https://github.com/robweber/xbmcbackup.git
synced 2024-11-15 04:45:49 +01:00
12 lines
339 B
Python
12 lines
339 B
Python
import urllib2
|
|
|
|
#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!
|
|
def shorten(aUrl):
|
|
tinyurl = 'http://tinyurl.com/api-create.php?url='
|
|
req = urllib2.urlopen(tinyurl + aUrl)
|
|
data = req.read()
|
|
|
|
#should be a tiny url
|
|
return str(data)
|