Inspiration

To make short URL for fast work purpose

What it does

It helps to make short URL of long URL entered

How we built it

Python

Challenges we ran into

Easy to make, not that challenging

Accomplishments that we're proud of

Done it

What we learned

Use of python packages

What's next for URL Shortner using Python

To make it in exe format

Code

import pyshorteners url = input('Enter the url: ') def shortenurl(url): s = pyshorteners.Shortener() print(s.tinyurl.short(url)) print ("The shortened URL is :- ") shortenurl(url)

Built With

Share this project:

Updates