pip install shorten
python
import shorten
s = shorten.Shorten()
short_url = s.create_short_url('https://www.example.com/very/long/url')
print(short_url)
python
import shorten
s = shorten.Shorten(api_key='YOUR_API_KEY')
short_url = s.create_short_url('https://www.example.com/very/long/url')
print(short_url)