blob: a9d52954072975bcb4936cd0f140ef64403aec28 [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{,
21fields\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
33Create a UUID from either a string of 32 hexadecimal digits,
34a string of 16 bytes as the \var{bytes} argument, a tuple of six
Tim Peters750c4422006-07-28 04:51:59 +000035integers (32-bit \var{time_low}, 16-bit \var{time_mid},
Andrew M. Kuchling146d3922006-06-28 14:25:20 +00003616-bit \var{time_hi_version},
378-bit \var{clock_seq_hi_variant}, 8-bit \var{clock_seq_low}, 48-bit \var{node})
38as the \var{fields} argument, or a single 128-bit integer as the \var{int}
39argument. When a string of hex digits is given, curly braces,
40hyphens, and a URN prefix are all optional. For example, these
41expressions all yield the same UUID:
42
43\begin{verbatim}
44UUID('{12345678-1234-5678-1234-567812345678}')
45UUID('12345678123456781234567812345678')
46UUID('urn:uuid:12345678-1234-5678-1234-567812345678')
47UUID(bytes='\x12\x34\x56\x78'*4)
48UUID(fields=(0x12345678, 0x1234, 0x5678, 0x12, 0x34, 0x567812345678))
49UUID(int=0x12345678123456781234567812345678)
50\end{verbatim}
51
52Exactly one of \var{hex}, \var{bytes}, \var{fields}, or \var{int} must
53be given. The \var{version} argument is optional; if given, the
54resulting UUID will have its variant and version number set according to
55RFC 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}
63The UUID as a 16-byte string.
64\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}