Andrew M. Kuchling | 146d392 | 2006-06-28 14:25:20 +0000 | [diff] [blame] | 1 | \section{\module{uuid} --- |
| 2 | UUID objects according to RFC 4122} |
| 3 | \declaremodule{builtin}{uuid} |
| 4 | \modulesynopsis{UUID objects (universally unique identifiers) according to RFC 4122} |
| 5 | \moduleauthor{Ka-Ping Yee}{ping@zesty.ca} |
| 6 | \sectionauthor{George Yoshida}{quiver@users.sourceforge.net} |
| 7 | |
| 8 | \versionadded{2.5} |
| 9 | |
| 10 | This module provides immutable \class{UUID} objects (the \class{UUID} class) |
| 11 | and the functions \function{uuid1()}, \function{uuid3()}, |
| 12 | \function{uuid4()}, \function{uuid5()} for generating version 1, 3, 4, |
| 13 | and 5 UUIDs as specified in \rfc{4122}. |
| 14 | |
| 15 | If all you want is a unique ID, you should probably call |
| 16 | \function{uuid1()} or \function{uuid4()}. Note that \function{uuid1()} |
| 17 | may compromise privacy since it creates a UUID containing the computer's |
| 18 | network address. \function{uuid4()} creates a random UUID. |
| 19 | |
| 20 | \begin{classdesc}{UUID}{\optional{hex\optional{, bytes\optional{, |
| 21 | fields\optional{, int\optional{, version}}}}}} |
| 22 | |
| 23 | %Instances of the UUID class represent UUIDs as specified in RFC 4122. |
| 24 | %UUID objects are immutable, hashable, and usable as dictionary keys. |
| 25 | %Converting a UUID to a string with str() yields something in the form |
| 26 | %'12345678-1234-1234-1234-123456789abc'. The UUID constructor accepts |
| 27 | %four possible forms: a similar string of hexadecimal digits, or a |
| 28 | %string of 16 raw bytes as an argument named 'bytes', or a tuple of |
| 29 | %six integer fields (with 32-bit, 16-bit, 16-bit, 8-bit, 8-bit, and |
| 30 | %48-bit values respectively) as an argument named 'fields', or a single |
| 31 | %128-bit integer as an argument named 'int'. |
| 32 | |
| 33 | Create a UUID from either a string of 32 hexadecimal digits, |
| 34 | a string of 16 bytes as the \var{bytes} argument, a tuple of six |
Tim Peters | 750c442 | 2006-07-28 04:51:59 +0000 | [diff] [blame] | 35 | integers (32-bit \var{time_low}, 16-bit \var{time_mid}, |
Andrew M. Kuchling | 146d392 | 2006-06-28 14:25:20 +0000 | [diff] [blame] | 36 | 16-bit \var{time_hi_version}, |
| 37 | 8-bit \var{clock_seq_hi_variant}, 8-bit \var{clock_seq_low}, 48-bit \var{node}) |
| 38 | as the \var{fields} argument, or a single 128-bit integer as the \var{int} |
| 39 | argument. When a string of hex digits is given, curly braces, |
| 40 | hyphens, and a URN prefix are all optional. For example, these |
| 41 | expressions all yield the same UUID: |
| 42 | |
| 43 | \begin{verbatim} |
| 44 | UUID('{12345678-1234-5678-1234-567812345678}') |
| 45 | UUID('12345678123456781234567812345678') |
| 46 | UUID('urn:uuid:12345678-1234-5678-1234-567812345678') |
| 47 | UUID(bytes='\x12\x34\x56\x78'*4) |
| 48 | UUID(fields=(0x12345678, 0x1234, 0x5678, 0x12, 0x34, 0x567812345678)) |
| 49 | UUID(int=0x12345678123456781234567812345678) |
| 50 | \end{verbatim} |
| 51 | |
| 52 | Exactly one of \var{hex}, \var{bytes}, \var{fields}, or \var{int} must |
| 53 | be given. The \var{version} argument is optional; if given, the |
| 54 | resulting UUID will have its variant and version number set according to |
| 55 | RFC 4122, overriding bits in the given \var{hex}, \var{bytes}, |
| 56 | \var{fields}, or \var{int}. |
| 57 | |
| 58 | \end{classdesc} |
| 59 | |
| 60 | \class{UUID} instances have these read-only attributes: |
| 61 | |
| 62 | \begin{memberdesc}{bytes} |
| 63 | The UUID as a 16-byte string. |
| 64 | \end{memberdesc} |
| 65 | |
| 66 | \begin{memberdesc}{fields} |
| 67 | A tuple of the six integer fields of the UUID, which are also available |
| 68 | as six individual attributes and two derived attributes: |
| 69 | |
| 70 | \begin{tableii}{l|l}{member}{Field}{Meaning} |
| 71 | \lineii{time_low}{the first 32 bits of the UUID} |
| 72 | \lineii{time_mid}{the next 16 bits of the UUID} |
| 73 | \lineii{time_hi_version}{the next 16 bits of the UUID} |
| 74 | \lineii{clock_seq_hi_variant}{the next 8 bits of the UUID} |
| 75 | \lineii{clock_seq_low}{the next 8 bits of the UUID} |
| 76 | \lineii{node}{the last 48 bits of the UUID} |
| 77 | \lineii{time}{the 60-bit timestamp} |
| 78 | \lineii{clock_seq}{the 14-bit sequence number} |
| 79 | \end{tableii} |
| 80 | |
| 81 | |
| 82 | \end{memberdesc} |
| 83 | |
| 84 | \begin{memberdesc}{hex} |
| 85 | The UUID as a 32-character hexadecimal string. |
| 86 | \end{memberdesc} |
| 87 | |
| 88 | \begin{memberdesc}{int} |
| 89 | The UUID as a 128-bit integer. |
| 90 | \end{memberdesc} |
| 91 | |
| 92 | \begin{memberdesc}{urn} |
| 93 | The UUID as a URN as specified in RFC 4122. |
| 94 | \end{memberdesc} |
| 95 | |
| 96 | \begin{memberdesc}{variant} |
| 97 | The UUID variant, which determines the internal layout of the UUID. |
| 98 | This will be an integer equal to one of the constants |
| 99 | \constant{RESERVED_NCS}, |
| 100 | \constant{RFC_4122}, \constant{RESERVED_MICROSOFT}, or |
| 101 | \constant{RESERVED_FUTURE}). |
| 102 | \end{memberdesc} |
| 103 | |
| 104 | \begin{memberdesc}{version} |
| 105 | The UUID version number (1 through 5, meaningful only |
| 106 | when the variant is \constant{RFC_4122}). |
| 107 | \end{memberdesc} |
| 108 | |
| 109 | The \module{uuid} module defines the following functions |
| 110 | |
| 111 | \begin{funcdesc}{getnode}{} |
Tim Peters | 750c442 | 2006-07-28 04:51:59 +0000 | [diff] [blame] | 112 | Get the hardware address as a 48-bit positive integer. The first time this |
| 113 | runs, it may launch a separate program, which could be quite slow. If all |
Andrew M. Kuchling | 146d392 | 2006-06-28 14:25:20 +0000 | [diff] [blame] | 114 | attempts to obtain the hardware address fail, we choose a random 48-bit |
Tim Peters | 750c442 | 2006-07-28 04:51:59 +0000 | [diff] [blame] | 115 | number with its eighth bit set to 1 as recommended in RFC 4122. "Hardware |
| 116 | address" means the MAC address of a network interface, and on a machine |
| 117 | with multiple network interfaces the MAC address of any one of them may |
| 118 | be returned. |
Andrew M. Kuchling | 146d392 | 2006-06-28 14:25:20 +0000 | [diff] [blame] | 119 | \end{funcdesc} |
| 120 | \index{getnode} |
| 121 | |
| 122 | \begin{funcdesc}{uuid1}{\optional{node\optional{, clock_seq}}} |
| 123 | Generate a UUID from a host ID, sequence number, and the current time. |
| 124 | If \var{node} is not given, \function{getnode()} is used to obtain the |
| 125 | hardware address. |
| 126 | If \var{clock_seq} is given, it is used as the sequence number; |
| 127 | otherwise a random 14-bit sequence number is chosen. |
| 128 | \end{funcdesc} |
| 129 | \index{uuid1} |
| 130 | |
| 131 | \begin{funcdesc}{uuid3}{namespace, name} |
Tim Peters | 750c442 | 2006-07-28 04:51:59 +0000 | [diff] [blame] | 132 | Generate a UUID based upon a MD5 hash of the \var{name} string value |
| 133 | drawn from a specified namespace. \var{namespace} |
Andrew M. Kuchling | 146d392 | 2006-06-28 14:25:20 +0000 | [diff] [blame] | 134 | must be one of \constant{NAMESPACE_DNS}, |
Tim Peters | 750c442 | 2006-07-28 04:51:59 +0000 | [diff] [blame] | 135 | \constant{NAMESPACE_URL}, \constant{NAMESPACE_OID}, |
Andrew M. Kuchling | 146d392 | 2006-06-28 14:25:20 +0000 | [diff] [blame] | 136 | or \constant{NAMESPACE_X500}. |
| 137 | \end{funcdesc} |
| 138 | \index{uuid3} |
| 139 | |
| 140 | \begin{funcdesc}{uuid4}{} |
| 141 | Generate a random UUID. |
| 142 | \end{funcdesc} |
| 143 | \index{uuid4} |
| 144 | |
| 145 | \begin{funcdesc}{uuid5}{namespace, name} |
Tim Peters | 750c442 | 2006-07-28 04:51:59 +0000 | [diff] [blame] | 146 | Generate a UUID based upon a SHA-1 hash of the \var{name} string value |
| 147 | drawn from a specified namespace. \var{namespace} |
Andrew M. Kuchling | 146d392 | 2006-06-28 14:25:20 +0000 | [diff] [blame] | 148 | must be one of \constant{NAMESPACE_DNS}, |
Tim Peters | 750c442 | 2006-07-28 04:51:59 +0000 | [diff] [blame] | 149 | \constant{NAMESPACE_URL}, \constant{NAMESPACE_OID}, |
Andrew M. Kuchling | 146d392 | 2006-06-28 14:25:20 +0000 | [diff] [blame] | 150 | or \constant{NAMESPACE_X500}. |
| 151 | \end{funcdesc} |
| 152 | \index{uuid5} |
| 153 | |
Tim Peters | 750c442 | 2006-07-28 04:51:59 +0000 | [diff] [blame] | 154 | The \module{uuid} module defines the following namespace constants |
Andrew M. Kuchling | 146d392 | 2006-06-28 14:25:20 +0000 | [diff] [blame] | 155 | for use with \function{uuid3()} or \function{uuid5()}. |
| 156 | |
| 157 | \begin{datadesc}{NAMESPACE_DNS} |
| 158 | Fully-qualified domain name namespace UUID. |
| 159 | \end{datadesc} |
| 160 | |
| 161 | \begin{datadesc}{NAMESPACE_URL} |
| 162 | URL namespace UUID. |
| 163 | \end{datadesc} |
| 164 | |
| 165 | \begin{datadesc}{NAMESPACE_OID} |
| 166 | ISO OID namespace UUID. |
| 167 | \end{datadesc} |
| 168 | |
| 169 | \begin{datadesc}{NAMESPACE_X500} |
| 170 | X.500 DN namespace UUID. |
| 171 | \end{datadesc} |
| 172 | |
Tim Peters | 750c442 | 2006-07-28 04:51:59 +0000 | [diff] [blame] | 173 | The \module{uuid} module defines the following constants |
Andrew M. Kuchling | 146d392 | 2006-06-28 14:25:20 +0000 | [diff] [blame] | 174 | for the possible values of the \member{variant} attribute: |
| 175 | |
| 176 | \begin{datadesc}{RESERVED_NCS} |
| 177 | Reserved for NCS compatibility. |
| 178 | \end{datadesc} |
| 179 | |
| 180 | \begin{datadesc}{RFC_4122} |
| 181 | Uses UUID layout specified in \rfc{4122}. |
| 182 | \end{datadesc} |
| 183 | |
| 184 | \begin{datadesc}{RESERVED_MICROSOFT} |
| 185 | Reserved for Microsoft backward compatibility. |
| 186 | \end{datadesc} |
| 187 | |
| 188 | \begin{datadesc}{RESERVED_FUTURE} |
| 189 | Reserved for future definition. |
| 190 | \end{datadesc} |
| 191 | |
| 192 | |
| 193 | \begin{seealso} |
| 194 | \seerfc{4122}{A Universally Unique IDentifier (UUID) URN Namespace}{ |
| 195 | This specifies a Uniform Resource Name namespace for UUIDs.} |
| 196 | \end{seealso} |
| 197 | |
| 198 | \subsection{Example \label{uuid-example}} |
| 199 | |
| 200 | Here is a typical usage: |
| 201 | \begin{verbatim} |
| 202 | >>> import uuid |
| 203 | |
| 204 | # make a UUID based on the host ID and current time |
| 205 | >>> uuid.uuid1() |
| 206 | UUID('a8098c1a-f86e-11da-bd1a-00112444be1e') |
| 207 | |
| 208 | # make a UUID using an MD5 hash of a namespace UUID and a name |
| 209 | >>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org') |
| 210 | UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e') |
| 211 | |
| 212 | # make a random UUID |
| 213 | >>> uuid.uuid4() |
| 214 | UUID('16fd2706-8baf-433b-82eb-8c7fada847da') |
| 215 | |
| 216 | # make a UUID using a SHA-1 hash of a namespace UUID and a name |
| 217 | >>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org') |
| 218 | UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d') |
| 219 | |
| 220 | # make a UUID from a string of hex digits (braces and hyphens ignored) |
| 221 | >>> x = uuid.UUID('{00010203-0405-0607-0809-0a0b0c0d0e0f}') |
| 222 | |
| 223 | # convert a UUID to a string of hex digits in standard form |
| 224 | >>> str(x) |
| 225 | '00010203-0405-0607-0809-0a0b0c0d0e0f' |
| 226 | |
| 227 | # get the raw 16 bytes of the UUID |
| 228 | >>> x.bytes |
| 229 | '\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f' |
| 230 | |
| 231 | # make a UUID from a 16-byte string |
| 232 | >>> uuid.UUID(bytes=x.bytes) |
| 233 | UUID('00010203-0405-0607-0809-0a0b0c0d0e0f') |
| 234 | \end{verbatim} |