URL Shortener Using Python

URL Shortener Using Python

Python makes it easy to do anything in IT field.

Today we will use Python to short any URL.


We will be using “pyshorteners” module from Python.

You can install by typing "pip install pyshorteners" inside terminal.

There is nothing big to explain here, as Python makes most of the code too short and the same is here.

We are using "pyshorteners" which shorts any URL we give to the program.


Code


import pyshorteners
url = input("Enter your url")
s = pyshorteners.Shortener().tinyurl.short(url)
print("Your shorted is -->", s)

Output

Enter your url-->https://copyassignment.com/ 
Your shorted is --> http://tinyurl.com/ycnqto68


Watch YouTube Video:



Also read:

  • Aya Expanse supports multiple languages for diverse global applications
    Snapshot Aya Expanse is a cutting-edge multilingual model that has achieved exceptional performance across 23 different languages, setting a new benchmark for language understanding and generation capabilities. Why this matters The implications of Aya Expanse are significant, as it enables developers to create more inclusive and effective applications that can cater to diverse user bases…
  • Alibaba releases Page Agent on GitHub for public access
    Snapshot GitHub’s trending page has highlighted Page Agent, an open-source project by Alibaba. This innovative tool allows for efficient and simplified web page analysis, providing developers with valuable insights into page performance and structure. Why this matters Page Agent’s ability to analyze web pages and provide actionable data has significant implications for developers. By leveraging…
  • Google Sheets Gemini reaches new levels of performance and accuracy
    Gemini in Google Sheets has achieved state-of-the-art performance, with a 70.48% success rate in autonomously manipulating complex, real-world spreadsheets on the full SpreadsheetBench dataset. This milestone marks a significant advancement in AI-powered spreadsheet capabilities, positioning Gemini as a leader in the field. Situation The recent announcement of new beta features for Gemini in Sheets has…
  • Artificial intelligence boosts cardiac care in rural Australian communities
    Google is partnering with leading Australian health organizations to bring new AI tools to regional communities, with a $1 million investment from Google Australia’s Digital Future Initiative. This project aims to identify heart health risks early, making proactive care possible for more people, particularly in rural Australia where individuals are 60% more likely to die…
  • NVIDIA GTC 2026 Offers Insights into Future Artificial Intelligence Developments
    NVIDIA’s GTC 2026 conference is now underway, bringing together 30,000 attendees from 190 countries to explore the latest advancements in AI, with a focus on engineering implications. This year’s event introduces OpenClaw, the fastest-growing open source project in history, allowing attendees to build and deploy their own proactive, always-on AI assistants. What’s New with OpenClaw…


Share:

Author: Harry

Hello friends, thanks for visiting my website. I am a Python programmer. I, with some other members, write blogs on this website based on Python and Programming. We are still in the growing phase that's why the website design is not so good and there are many other things that need to be corrected in this website but I hope all these things will happen someday. But, till then we will not stop ourselves from uploading more amazing articles. If you want to join us or have any queries, you can mail me at admin@copyassignment.com Thank you

Related Articles