pip install pyshorteners
python
import pyshorteners
python
s = pyshorteners.Shortener()
short_url = s.shorten("https://www.example.com")
print(short_url)
python
s = pyshorteners.Shortener()
long_url = s.expand("https://shorturl.com/abcd")
print(long_url)
python
s = pyshorteners.Shortener()
long_url, redirect_chain = s.expand_with_shorturl("https://shorturl.com/abcd")
print(long_url)
print(redirect_chain)