Python Library: uuid_shortener
A simple utility to shorten UUIDs using base62 encoding.
Installation
Install using pip:
pip install uuid_shortener
Usage
from uuid_shortener import UUIDShortener
original_uuid = 'your-uuid-here'
shortened = UUIDShortener.encode(original_uuid)
print(f'Shortened UUID: {shortened}')
restored = UUIDShortener.decode(shortened)
print(f'Restored UUID: {restored}')
Replace your-uuid-here with an actual UUID to test.
Example
a = str(uuid.uuid4())
print(a)
b = UUIDShortener.encode(a)
print(b)
print(UUIDShortener.decode(b))
License
This project is licensed under the MIT License - see the LICENSE.txt file for details.