pip install shorturl
python
import shorturl
python
import shorturl
long_url = "https://example.com/this/is/a/very/long/url"
short_url = shorturl.short(long_url)
print("Long URL:", long_url)
print("Short URL:", short_url)
python
import shorturl
long_url = "https://example.com/this/is/a/very/long/url"
short_url = shorturl.short(long_url, prefix="mydomain/")
print("Long URL:", long_url)
print("Short URL:", short_url)
python
import shorturl
long_url = "https://example.com/this/is/a/very/long/url"
short_url = shorturl.short(long_url)
print("Long URL:", long_url)
print("Short URL:", short_url)