We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4c1e2d commit 1312fb7Copy full SHA for 1312fb7
url_shortner.py
@@ -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