Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save EricTurner3/e722119b8d1863ae95cde33df3d062a9 to your computer and use it in GitHub Desktop.
Save EricTurner3/e722119b8d1863ae95cde33df3d062a9 to your computer and use it in GitHub Desktop.
Python One-Liner UUID Generate (no hyphens)
python -c "import uuid; print(str(uuid.uuid4()).replace('-',''))"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment