Skip to content

Commit 1312fb7

Browse files
Added script for a URL shortner
1 parent b4c1e2d commit 1312fb7

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

url_shortner.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Importing the required libraries.
2+
import pyshorteners
3+
4+
# Taking input from the user.
5+
url = input("Enter URL: ")
6+
7+
# Creating an instance of the pyshorteners library.
8+
shortener = pyshorteners.Shortener()
9+
10+
# Shortening the URL using TinyURL.
11+
shortened_URL = shortener.tinyurl.short(url)
12+
13+
# Displaying the shortened URL.
14+
print(f"Shortened URL: {shortened_URL}")

0 commit comments

Comments
 (0)