Skip to content

Instantly share code, notes, and snippets.

@kevgathuku
Forked from mattupstate/uuid_url64.py
Created February 7, 2018 11:55
Show Gist options
  • Save kevgathuku/065aea4ab9cca0b92e12e45cb9e32dc3 to your computer and use it in GitHub Desktop.
Save kevgathuku/065aea4ab9cca0b92e12e45cb9e32dc3 to your computer and use it in GitHub Desktop.
Generate unique, URL friendly ID's based on UUID with Python
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