🧠
MindDB
  • MindDB
  • About Me
  • Bhaumik Mistry
  • Projects
  • Arsenal
    • Games 2019 2020
  • Count-It
    • 2020 Books
    • 2020 Games
    • 2020 Movies
    • 2020 TV Series
    • 2021 All Information
  • Drawingbook
    • Instagram Drawing Book
    • Pixel art book
    • A to P sketches
      • A
      • B
      • C
      • D
      • E
      • F
      • G
      • H
      • I
      • J
      • K
      • L
      • M
      • N
      • P
  • General Knowledge
    • Travel
    • Memory
    • Anger and Hunger
  • Mac
    • OS X version from command line
    • System setup
  • Physics
    • Aerodynamics
    • James Glashier
  • Space
    • Kepler space telescope
    • K2-18b
    • Parsec
  • Software
    • Advent of Code
    • Android
      • Icons
      • Snippets
    • C++
      • Code
        • If-else Vs Ternary
        • Best Fitting Plane
        • To Do
    • Chrome Extension
    • Git
    • iphone
    • PaaS
      • Heroku
      • Docker
    • People
      • Paul Graham
      • Ben Kuhn
    • Python
      • Pytest
      • UUID
  • Sports
    • Football(soccer)
      • EPL
    • Basketball
  • Stocks
    • TARP
Powered by GitBook
On this page

Was this helpful?

  1. Software
  2. Python

UUID

UUID in detail

PreviousPytestNextSports

Last updated 4 years ago

Was this helpful?

A Universally Unique Identifier (UUID) is a 128-bit number used to identify information in computer systems. The term globally unique identifier (GUID) is also used, typically software created by Microsoft.

When generated according to the standard methods, UUIDs are for practical purposes unique. Their uniqueness does not depends on a central registration authority or coordination between the parties generating them, unlike most other numbering schemes. While the probability that a UUID will be duplicated is not zero, It is close enough to zero to be negligible.

Format

In its canonical textual representation, the 16 octets of UUID are represented as 32 hexadecimal (base-16) digits. displayed in five groups separated by hyphens, in the form 8-4-4-4-12 for total of 36 characters.

123e4567-e89b-12d3-a456-426614174000
xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxx

The four bit M and the 1-3 bit N fields code the format of the UUID itself.

https://docs.python.org/3/library/uuid.html