Lines Matching refs:uuid
1 :mod:`uuid` --- UUID objects according to :rfc:`4122`
4 .. module:: uuid
9 **Source code:** :source:`Lib/uuid.py`
59 UUID('urn:uuid:12345678-1234-5678-1234-567812345678')
75 ``str(uuid)`` returns a string in the form
153 The :mod:`uuid` module defines the following functions:
208 The :mod:`uuid` module defines the following namespace identifiers for use with
233 The :mod:`uuid` module defines the following constants for the possible values
269 Here are some examples of typical usage of the :mod:`uuid` module::
271 >>> import uuid
274 >>> uuid.uuid1()
278 >>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
282 >>> uuid.uuid4()
286 >>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')
290 >>> x = uuid.UUID('{00010203-0405-0607-0809-0a0b0c0d0e0f}')
301 >>> uuid.UUID(bytes=x.bytes)