Last active
July 2, 2020 13:46
-
-
Save mattupstate/8714628 to your computer and use it in GitHub Desktop.
Generate unique, URL friendly ID's based on UUID with Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import uuid | |
import base64 | |
def uuid_url64(): | |
"""Returns a unique, 16 byte, URL safe ID by combining UUID and Base64 | |
""" | |
rv = base64.b64encode(uuid.uuid4().bytes).decode('utf-8') | |
return re.sub(r'[\=\+\/]', lambda m: {'+': '-', '/': '_', '=': ''}[m.group(0)], rv) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment