3.1 pyshorteners
pip install pyshorteners
python
import pyshorteners
url = 'https://example.com'
shortener = pyshorteners.Shortener()
short_url = shortener.tinyurl.short(url)
print(short_url)
3.2 django-short-urls
pip install django-short-urls
python
INSTALLED_APPS = [
...
'short_urls',
]
python
from short_urls.models import ShortURL
short_url = ShortURL.objects.create_url(url='https://example.com')
long_url = ShortURL.objects.get_url(short_url='abc123')