我如何在Python中创建一个平台独立的GUID/UUID ?我听说在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。

UUID版本6和7 -用于现代应用程序和数据库(草案)rfc的新通用唯一标识符(UUID)格式-可从https://pypi.org/project/uuid6/获得

文档:

Python 2 Python 3

示例(适用于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'

其他回答

复制自:https://docs.python.org/3/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')

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

Ex:

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

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

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

UUID版本6和7 -用于现代应用程序和数据库(草案)rfc的新通用唯一标识符(UUID)格式-可从https://pypi.org/project/uuid6/获得

文档:

Python 2 Python 3

示例(适用于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'

我使用guid作为数据库类型操作的随机键。

十六进制形式,加上破折号和额外的字符,对我来说似乎不必要地长。但我也喜欢表示十六进制数的字符串是非常安全的,因为它们不包含在某些情况下可能导致问题的字符,如'+','='等。

我没有使用十六进制,而是使用url安全的base64字符串。不过,以下内容不符合任何UUID/GUID规范(除了具有所需的随机性)。

import base64
import uuid

# get a UUID - URL safe, Base64
def get_a_uuid():
    r_uuid = base64.urlsafe_b64encode(uuid.uuid4().bytes)
    return r_uuid.replace('=', '')

此函数完全可配置,并根据指定的格式生成唯一的uid

例如:-[8,4,4,4,12],这是提到的格式,它将生成以下uuid

LxoYNyXe-7hbQ-caJt-DSdU-PDAht56cMEWi

 import random as r

 def generate_uuid():
        random_string = ''
        random_str_seq = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
        uuid_format = [8, 4, 4, 4, 12]
        for n in uuid_format:
            for i in range(0,n):
                random_string += str(random_str_seq[r.randint(0, len(random_str_seq) - 1)])
            if n != 12:
                random_string += '-'
        return random_string