Skip to content

Commit ca49f96

Browse files
committed
url shortener
1 parent afe4a36 commit ca49f96

File tree

4 files changed

+89
-0
lines changed

4 files changed

+89
-0
lines changed

Url_Shortener/README.md

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<!--Please do not remove this part-->
2+
3+
![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99)
4+
5+
![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)
6+
7+
8+
9+
# URL Shortener
10+
11+
12+
13+
![enter image description here](https://www.clickslice.co.uk/wp-content/uploads/2022/07/1_Pdw7h5X6vQQNVopIzHBG6A.jpeg)
14+
15+
16+
17+
<!--An image is an illustration for your project, the tip here is using your sense of humour as much as you can :D
18+
19+
20+
21+
You can copy paste my markdown photo insert as following:
22+
23+
<p align="center">
24+
25+
<img src="your-source-is-here" width=40% height=40%>
26+
27+
-->
28+
29+
30+
31+
## 🛠️ Description
32+
33+
<!--Remove the below lines and add yours -->
34+
35+
A cli url shortener.
36+
37+
38+
39+
## ⚙️ Languages or Frameworks Used
40+
41+
<!--Remove the below lines and add yours -->
42+
43+
44+
pip install -r requirements.txt
45+
46+
47+
## 🌟 How to run
48+
49+
<!--Remove the below lines and add yours -->
50+
51+
1. Replace the api_key in url_shortener.py to your bitly api key
52+
2. Run the file !!
53+
54+
55+
56+
## 📺 Demo
57+
58+
![alt text](assets/ezgif-5-7fc3e9b8f1.gif)
59+
60+
61+
62+
## 🤖 Author
63+
64+
<!--Remove the below lines and add yours -->
65+
66+
[dongjin2008](https://github.com/dongjin2008)
28.1 KB
Loading

Url_Shortener/requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
requests
2+
json

Url_Shortener/url_shortner.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import requests
2+
import json
3+
4+
UI = input("Enter the long link: ")
5+
api_key = 'You api key here'
6+
headers = {
7+
'Authorization': f'Bearer {api_key}',
8+
'Content-Type': 'application/json',
9+
}
10+
11+
data = {"long_url": UI}
12+
for i in range(3):
13+
result = requests.post("https://api-ssl.bitly.com/v4/shorten", headers=headers, data=json.dumps(data))
14+
if result.status_code == 200:
15+
break
16+
if result.status_code == 200:
17+
link = json.loads(result.content)['link']
18+
print(f"\nYour shortened link: {link}")
19+
else:
20+
print("error occured")
21+

0 commit comments

Comments
 (0)