pip install pyshorteners
python
import pyshorteners
python
original_url = "https://example.com"
shortened_url = pyshorteners.Shortener().short(original_url)
python
print("Shortened URL:", shortened_url)
python
import pyshorteners
original_url = "https://example.com"
shortened_url = pyshorteners.Shortener().short(original_url)
print("Shortened URL:", shortened_url)