shell
pip install pyshorteners
python
import pyshorteners
python
shortener = pyshorteners.Shortener()
python
short_url = shortener.tinyurl.short("https://www.example.com")
python
short_url = shortener.bitly.short("https://www.example.com")
python
print("Short URL: " + short_url)
python
long_url = shortener.tinyurl.expand(short_url)
python
shortener = pyshorteners.Shortener(api_key="YOUR_API_KEY", username="YOUR_USERNAME")