Skip to content

Instantly share code, notes, and snippets.

@victory-sokolov
Last active November 23, 2023 14:42
Show Gist options
  • Save victory-sokolov/6b59ed00386b39e0a46b40a2f24d5d83 to your computer and use it in GitHub Desktop.
Save victory-sokolov/6b59ed00386b39e0a46b40a2f24d5d83 to your computer and use it in GitHub Desktop.
Shorten Url with tinyurl
from urllib.request import urlopen
url = "https://facebook.com"
data = urlopen("http://tinyurl.com/api-create.php?url="+url)
shorten_url = data.readlines()[0].decode()
print(shorten_url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment