File tree Expand file tree Collapse file tree 4 files changed +29
-1
lines changed Expand file tree Collapse file tree 4 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,9 @@ When you Add a project Add it to the README for ease of finding it
48
48
49
49
* [ YouTube Video Downloader] ( https://github.com/larymak/Python-project-Scripts/tree/main/YoutubeDownloader )
50
50
51
- * Text to Audio
51
+ * [ Text to Audio] ( https://github.com/larymak/Python-project-Scripts/tree/main/texttoaudio )
52
+
53
+ * [ Sending Emails] ( https://github.com/larymak/Python-project-Scripts/tree/main/Sending-Emails )
52
54
53
55
_ more coming soon_
54
56
Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change
1
+ """
2
+ Example input : https://github.com/Dhrumil-Zion/Python-project-Scripts
3
+ """
4
+
5
+ import pyshorteners
6
+
7
+ link = input ("\n Enter your link : " )
8
+
9
+ short = pyshorteners .Shortener ()
10
+ x = short .tinyurl .short (link )
11
+
12
+ print ("\n Shorted link is : " + x )
You can’t perform that action at this time.
0 commit comments