pip install requests
python
import shorten_tv
python
shorten_tv_obj = shorten_tv.ShortenTV(API_KEY)
python
short_link = shorten_tv_obj.shorten_link(long_link)
python
import shorten_tv
shorten_tv_obj = shorten_tv.ShortenTV(API_KEY)
long_link = "https://example.com/this/is/a/very/long/link"
short_link = shorten_tv_obj.shorten_link(long_link)
print(short_link)