pip install pyshorteners
python
import pyshorteners
shortener = pyshorteners.Shortener()
long_url = "https://www.example.com/very/long/url"
short_url = shortener.short(long_url)
print(f"Short URL: {short_url}")
def custom_shorten(url):
return "https://tinyurl.com/your-shortened-url"
custom_short_url = custom_shorten(long_url)
print(f"Custom Short URL: {custom_short_url}")