Skip to content

Instantly share code, notes, and snippets.

@komasaru
Last active June 28, 2022 02:08
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save komasaru/ed07018ae246d128370a1693f5dd1849 to your computer and use it in GitHub Desktop.
Save komasaru/ed07018ae246d128370a1693f5dd1849 to your computer and use it in GitHub Desktop.
Python script to shorten a url with TinyURL API.
#! /usr/local/bin/python3.6
"""
URL shorten with TinyURL API
"""
import requests
import sys
import traceback
import urllib
class UrlShortenTinyurl:
URL = "http://tinyurl.com/api-create.php"
def shorten(self, url_long):
try:
url = self.URL + "?" \
+ urllib.parse.urlencode({"url": url_long})
res = requests.get(url)
print("STATUS CODE:", res.status_code)
print(" LONG URL:", url_long)
print(" SHORT URL:", res.text)
except Exception as e:
raise
if __name__ == '__main__':
url_long = "https://www.mk-mode.com/octopress/2018/02/25/python-napier-computation/"
try:
obj = UrlShortenTinyurl()
obj.shorten(url_long)
except Exception as e:
traceback.print_exc()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment