协慌网

登录 贡献 社区

如何在 Python 中创建 GUID / UUID

如何在独立于平台的 Python 中创建 GUID?我听说有一种在 Windows 上使用 ActivePython 的方法,但这仅是 Windows,因为它使用 COM。是否有使用普通 Python 的方法?

答案

uuid 模块提供了不变的 UUID 对象(UUID 类)和函数 uuid1(),uuid3(),uuid4(),uuid5()来生成RFC 4122 中指定的版本 1、3、4 和 5 的 UUID。

如果只需要一个唯一的 ID,则应该调用 uuid1()或 uuid4()。请注意,uuid1()可能会破坏隐私,因为它会创建一个包含计算机网络地址的 UUID。 uuid4()创建一个随机 UUID。

文件:

示例(适用于 Python 2 和 3):

>>> import uuid

>>> # make a random UUID
>>> uuid.uuid4()
UUID('bd65600d-8669-4903-8a14-af88203add38')

>>> # Convert a UUID to a string of hex digits in standard form
>>> str(uuid.uuid4())
'f50ec0b7-f960-400d-91f0-c42a6d44e3d0'

>>> # Convert a UUID to a 32-character hexadecimal string
>>> uuid.uuid4().hex
'9fe2c4e93f654fdbb24c02b15259716c'

如果您使用的是 Python 2.5 或更高版本,则uuid 模块已经包含在 Python 标准发行版中。

前任:

>>> import uuid
>>> uuid.uuid4()
UUID('5361a11b-615c-42bf-9bdb-e2c3790ada14')

复制自: https ://docs.python.org/2/library/uuid.html(由于发布的链接无效,并且会不断更新)

>>> import uuid

>>> # make a UUID based on the host ID and current time
>>> uuid.uuid1()
UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')

>>> # make a UUID using an MD5 hash of a namespace UUID and a name
>>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')

>>> # make a random UUID
>>> uuid.uuid4()
UUID('16fd2706-8baf-433b-82eb-8c7fada847da')

>>> # make a UUID using a SHA-1 hash of a namespace UUID and a name
>>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')
UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d')

>>> # make a UUID from a string of hex digits (braces and hyphens ignored)
>>> x = uuid.UUID('{00010203-0405-0607-0809-0a0b0c0d0e0f}')

>>> # convert a UUID to a string of hex digits in standard form
>>> str(x)
'00010203-0405-0607-0809-0a0b0c0d0e0f'

>>> # get the raw 16 bytes of the UUID
>>> x.bytes
'\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f'

>>> # make a UUID from a 16-byte string
>>> uuid.UUID(bytes=x.bytes)
UUID('00010203-0405-0607-0809-0a0b0c0d0e0f')