twitools/googletools/__init__.py

9 lines
248 B
Python
Raw Normal View History

import pyshorteners
def shortURL(url):
try:
pyshorteners.Shortener('Google', api_key=setuptools.getSetting("Google", "googl")).short(url)
except pyshorteners.exceptions.ShorteningErrorException as e:
print("Error handling %s" % url)
raise