twitools/httptools/__init__.py
2017-03-13 22:55:49 +01:00

13 lines
376 B
Python

import setuptools, pyshorteners, requests
def longURL(url):
return requests.head(url, allow_redirects=True).url
def shortURL(url):
try:
return pyshorteners.Shortener('Google', api_key=setuptools.getSetting("Google", "googl")).short(longURL(url))
except pyshorteners.exceptions.ShorteningErrorException as e:
print("Error handling %s" % url)
print(e)
return False