https://github.com/davidaurelio/hashids-python
https://pypi.org/project/hashids/
https://pypi.org/project/django-hashid-field/1.0.0/
https://www.programcreek.com/python/example/105125/hashids.Hashids
from hashids import Hashids
hashids = Hashids(alphabet='abcdefghijklmnopqrstuvwxyz1234567890', min_length=6)
for i in range(10): hashids.encode(i)
@rg3915