pip install shorten.tv
python
from shorten_tv import parse_url
url = "https://shorten.tv/abc123"
result = parse_url(url)
print(result)
python
from shorten_tv import make_url
protocol = "https"
domain = "shorten.tv"
path = "abc123"
query_params = {"key": "value"}
url = make_url(protocol, domain, path, query_params)
print(url)