Skip to content

Instantly share code, notes, and snippets.

@AxelStein
Created September 12, 2021 13:27
Show Gist options
  • Save AxelStein/7f0de508bcddb8ba60f09f79483d7cc5 to your computer and use it in GitHub Desktop.
Save AxelStein/7f0de508bcddb8ba60f09f79483d7cc5 to your computer and use it in GitHub Desktop.
sized_unique_id = (uuid.uuid4().int >> 64).__str__()[0:16]
print(
"{}-{}-{}-{}".format(sized_unique_id[0:4], sized_unique_id[4:8],
sized_unique_id[8:12], sized_unique_id[12:])
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment