Skip to content

Instantly share code, notes, and snippets.

@underlost
Created June 29, 2015 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save underlost/17f91b58d5cba0bf57fd to your computer and use it in GitHub Desktop.
Save underlost/17f91b58d5cba0bf57fd to your computer and use it in GitHub Desktop.
guid generator
guid_base = str(uuid.uuid4())
guid_encoded = guid_base.encode('ascii', 'ignore')
guid = md5(guid_encoded).hexdigest()[:length]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment