pip install short_url
python
import short_url
long_url = "https://example.com/articles/how-to-use-short-url-library-in-python"
short_code = short_url.encode_url(long_url)
python
import short_url
short_code = "9fA3X"
long_url = short_url.decode_url(short_code)
python
import short_url
characters = short_url.get_digits() + short_url.get_lower()
short_url.set_alphabet(characters)