Advertisement
calfred2808

#Python URL shortener

Jul 19th, 2020
828
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. import pyshorteners
  2. url = input("Enter your url")
  3. s = pyshorteners.Shortener().tinyurl.short(url)
  4. print("Your shorted is -->", s)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement