blob: 5aab80c161ba91f62cd217e822fa6111fad0700e [file] [log] [blame]
Andrew M. Kuchling146d3922006-06-28 14:25:20 +00001\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
10This module provides immutable \class{UUID} objects (the \class{UUID} class)
11and the functions \function{uuid1()}, \function{uuid3()},
12\function{uuid4()}, \function{uuid5()} for generating version 1, 3, 4,
13and 5 UUIDs as specified in \rfc{4122}.
14
15If all you want is a unique ID, you should probably call
16\function{uuid1()} or \function{uuid4()}. Note that \function{uuid1()}
17may compromise privacy since it creates a UUID containing the computer's
18network address. \function{uuid4()} creates a random UUID.
19
20\begin{classdesc}{UUID}{\optional{hex\optional{, bytes\optional{,
Anthony Baxterc8557872006-08-22 07:36:59 +000021bytes_le\optional{, fields\optional{, int\optional{, version}}}}}}}
Andrew M. Kuchling146d3922006-06-28 14:25:20 +000022
23Create a UUID from either a string of 32 hexadecimal digits,
Anthony Baxterc8557872006-08-22 07:36:59 +000024a string of 16 bytes as the \var{bytes} argument, a string of 16 bytes
25in little-endian order as the \var{bytes_le} argument, a tuple of six
Tim Peters750c4422006-07-28 04:51:59 +000026integers (32-bit \var{time_low}, 16-bit \var{time_mid},
Andrew M. Kuchling146d3922006-06-28 14:25:20 +00002716-bit \var{time_hi_version},
288-bit \var{clock_seq_hi_variant}, 8-bit \var{clock_seq_low}, 48-bit \var{node})
29as the \var{fields} argument, or a single 128-bit integer as the \var{int}
30argument. When a string of hex digits is given, curly braces,
31hyphens, and a URN prefix are all optional. For example, these
32expressions all yield the same UUID:
33
34\begin{verbatim}
35UUID('{12345678-1234-5678-1234-567812345678}')
36UUID('12345678123456781234567812345678')
37UUID('urn:uuid:12345678-1234-5678-1234-567812345678')
38UUID(bytes='\x12\x34\x56\x78'*4)
Anthony Baxterc8557872006-08-22 07:36:59 +000039UUID(bytes_le='\x78\x56\x34\x12\x34\x12\x78\x56' +
40 '\x12\x34\x56\x78\x12\x34\x56\x78')
Andrew M. Kuchling146d3922006-06-28 14:25:20 +000041UUID(fields=(0x12345678, 0x1234, 0x5678, 0x12, 0x34, 0x567812345678))
42UUID(int=0x12345678123456781234567812345678)
43\end{verbatim}
44
Anthony Baxterc8557872006-08-22 07:36:59 +000045Exactly one of \var{hex}, \var{bytes}, \var{bytes_le}, \var{fields},
46or \var{int} must
Andrew M. Kuchling146d3922006-06-28 14:25:20 +000047be given. The \var{version} argument is optional; if given, the
48resulting UUID will have its variant and version number set according to
49RFC 4122, overriding bits in the given \var{hex}, \var{bytes},
Anthony Baxterc8557872006-08-22 07:36:59 +000050\var{bytes_le}, \var{fields}, or \var{int}.
Andrew M. Kuchling146d3922006-06-28 14:25:20 +000051
52\end{classdesc}
53
54\class{UUID} instances have these read-only attributes:
55
56\begin{memberdesc}{bytes}
Anthony Baxterc8557872006-08-22 07:36:59 +000057The UUID as a 16-byte string (containing the six
58integer fields in big-endian byte order).
59\end{memberdesc}
60
61\begin{memberdesc}{bytes_le}
62The UUID as a 16-byte string (with \var{time_low}, \var{time_mid},
63and \var{time_hi_version} in little-endian byte order).
Andrew M. Kuchling146d3922006-06-28 14:25:20 +000064\end{memberdesc}
65
66\begin{memberdesc}{fields}
67A tuple of the six integer fields of the UUID, which are also available
68as 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}
85The UUID as a 32-character hexadecimal string.
86\end{memberdesc}
87
88\begin{memberdesc}{int}
89The UUID as a 128-bit integer.
90\end{memberdesc}
91
92\begin{memberdesc}{urn}
93The UUID as a URN as specified in RFC 4122.
94\end{memberdesc}
95
96\begin{memberdesc}{variant}
97The UUID variant, which determines the internal layout of the UUID.
98This 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}
105The UUID version number (1 through 5, meaningful only
106when the variant is \constant{RFC_4122}).
107\end{memberdesc}
108
109The \module{uuid} module defines the following functions
110
111\begin{funcdesc}{getnode}{}
Tim Peters750c4422006-07-28 04:51:59 +0000112Get the hardware address as a 48-bit positive integer. The first time this
113runs, it may launch a separate program, which could be quite slow. If all
Andrew M. Kuchling146d3922006-06-28 14:25:20 +0000114attempts to obtain the hardware address fail, we choose a random 48-bit
Tim Peters750c4422006-07-28 04:51:59 +0000115number with its eighth bit set to 1 as recommended in RFC 4122. "Hardware
116address" means the MAC address of a network interface, and on a machine
117with multiple network interfaces the MAC address of any one of them may
118be returned.
Andrew M. Kuchling146d3922006-06-28 14:25:20 +0000119\end{funcdesc}
120\index{getnode}
121
122\begin{funcdesc}{uuid1}{\optional{node\optional{, clock_seq}}}
123Generate a UUID from a host ID, sequence number, and the current time.
124If \var{node} is not given, \function{getnode()} is used to obtain the
125hardware address.
126If \var{clock_seq} is given, it is used as the sequence number;
127otherwise a random 14-bit sequence number is chosen.
128\end{funcdesc}
129\index{uuid1}
130
131\begin{funcdesc}{uuid3}{namespace, name}
Tim Peters750c4422006-07-28 04:51:59 +0000132Generate a UUID based upon a MD5 hash of the \var{name} string value
133drawn from a specified namespace. \var{namespace}
Andrew M. Kuchling146d3922006-06-28 14:25:20 +0000134must be one of \constant{NAMESPACE_DNS},
Tim Peters750c4422006-07-28 04:51:59 +0000135\constant{NAMESPACE_URL}, \constant{NAMESPACE_OID},
Andrew M. Kuchling146d3922006-06-28 14:25:20 +0000136or \constant{NAMESPACE_X500}.
137\end{funcdesc}
138\index{uuid3}
139
140\begin{funcdesc}{uuid4}{}
141Generate a random UUID.
142\end{funcdesc}
143\index{uuid4}
144
145\begin{funcdesc}{uuid5}{namespace, name}
Tim Peters750c4422006-07-28 04:51:59 +0000146Generate a UUID based upon a SHA-1 hash of the \var{name} string value
147drawn from a specified namespace. \var{namespace}
Andrew M. Kuchling146d3922006-06-28 14:25:20 +0000148must be one of \constant{NAMESPACE_DNS},
Tim Peters750c4422006-07-28 04:51:59 +0000149\constant{NAMESPACE_URL}, \constant{NAMESPACE_OID},
Andrew M. Kuchling146d3922006-06-28 14:25:20 +0000150or \constant{NAMESPACE_X500}.
151\end{funcdesc}
152\index{uuid5}
153
Tim Peters750c4422006-07-28 04:51:59 +0000154The \module{uuid} module defines the following namespace constants
Andrew M. Kuchling146d3922006-06-28 14:25:20 +0000155for use with \function{uuid3()} or \function{uuid5()}.
156
157\begin{datadesc}{NAMESPACE_DNS}
158Fully-qualified domain name namespace UUID.
159\end{datadesc}
160
161\begin{datadesc}{NAMESPACE_URL}
162URL namespace UUID.
163\end{datadesc}
164
165\begin{datadesc}{NAMESPACE_OID}
166ISO OID namespace UUID.
167\end{datadesc}
168
169\begin{datadesc}{NAMESPACE_X500}
170X.500 DN namespace UUID.
171\end{datadesc}
172
Tim Peters750c4422006-07-28 04:51:59 +0000173The \module{uuid} module defines the following constants
Andrew M. Kuchling146d3922006-06-28 14:25:20 +0000174for the possible values of the \member{variant} attribute:
175
176\begin{datadesc}{RESERVED_NCS}
177Reserved for NCS compatibility.
178\end{datadesc}
179
180\begin{datadesc}{RFC_4122}
181Uses UUID layout specified in \rfc{4122}.
182\end{datadesc}
183
184\begin{datadesc}{RESERVED_MICROSOFT}
185Reserved for Microsoft backward compatibility.
186\end{datadesc}
187
188\begin{datadesc}{RESERVED_FUTURE}
189Reserved 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
200Here 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()
206UUID('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')
210UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')
211
212# make a random UUID
213>>> uuid.uuid4()
214UUID('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')
218UUID('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)
233UUID('00010203-0405-0607-0809-0a0b0c0d0e0f')
234\end{verbatim}