We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65a3e0f commit 330fbedCopy full SHA for 330fbed
ShortenLinks/README.md
@@ -0,0 +1,14 @@
1
+# Shorten Links
2
+
3
+## Description
4
+This snippet of code will compress your link length and make it too short upto great extent.
5
6
+## Requirements
7
8
+`$ pip install pyshorteners`
9
10
+## Steps To Execution
11
+- Fork this repo and navigate to ShortenLinks folder
12
+- Run this code.py `$ python code.py`
13
+- Yay !! you got your shorten link as output
14
ShortenLinks/code.py
@@ -0,0 +1,12 @@
+"""
+Example input : https://github.com/Dhrumil-Zion/Python-project-Scripts
+import pyshorteners
+link = input("\nEnter your link : ")
+short = pyshorteners.Shortener()
+x = short.tinyurl.short(link)
+print("\nShorted link is : "+x)
ShortenLinks/output.png
47.5 KB
0 commit comments