Skip to content

Commit 5077d86

Browse files
authored
Merge pull request larymak#9 from Dhrumil-Zion/main
Updated Readme.md file
2 parents ae9a688 + 330fbed commit 5077d86

File tree

4 files changed

+29
-1
lines changed

4 files changed

+29
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ When you Add a project Add it to the README for ease of finding it
4848

4949
* [YouTube Video Downloader](https://github.com/larymak/Python-project-Scripts/tree/main/YoutubeDownloader)
5050

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)
5254

5355
_more coming soon_
5456

ShortenLinks/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
"""
2+
Example input : https://github.com/Dhrumil-Zion/Python-project-Scripts
3+
"""
4+
5+
import pyshorteners
6+
7+
link = input("\nEnter your link : ")
8+
9+
short = pyshorteners.Shortener()
10+
x = short.tinyurl.short(link)
11+
12+
print("\nShorted link is : "+x)

ShortenLinks/output.png

47.5 KB
Loading

0 commit comments

Comments
 (0)