Last active
June 28, 2022 02:08
-
-
Save komasaru/ed07018ae246d128370a1693f5dd1849 to your computer and use it in GitHub Desktop.
Python script to shorten a url with TinyURL API.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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