如何在Python中创建GUID / UUID


684

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



34
对于这一切是神圣的爱,这是一个UUID -通用唯一ID en.wikipedia.org/wiki/Universally_unique_identifier -它只是不幸的是MS已经preferrred GUID。
david.barkhuizen

5
这是为您准备的衬板:python -c 'import uuid; print(uuid.uuid4())'
Ctrl-C

Answers:


776

Python 2.5及更高版本中的uuid模块提供了符合RFC的UUID生成。有关详细信息,请参见模块文档和RFC。[ 来源 ]

文件:

示例(在2和3上工作):

>>> import uuid
>>> uuid.uuid4()
UUID('bd65600d-8669-4903-8a14-af88203add38')
>>> str(uuid.uuid4())
'f50ec0b7-f960-400d-91f0-c42a6d44e3d0'
>>> uuid.uuid4().hex
'9fe2c4e93f654fdbb24c02b15259716c'

20
另外,请看一下shortuuid我编写的模块,因为它允许您生成更短的,可读的UUID:github.com/stochastic-technologies/shortuuid
Stavros Korokithakis 2012

2
@StavrosKorokithakis:您是否偶然为Python 3.x编写了shortuuid模块?
杰伊·帕特尔

2
@JayPatel shortuuid不适用于Python 3吗?如果没有,请提交错误。
Stavros Korokithakis

1
uuid4().hex和之间有什么区别str(uuid4())
凯文(Kevin)

6
好吧,如您在上面看到的,str(uuid4())返回UUID的字符串表示形式,包括破折号,而uuid4().hex返回“ UUID为32个字符的十六进制字符串”
stuartd 18'30

324

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

例如:

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

116

复制自: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')

28

我将GUID用作数据库类型操作的随机密钥。

对我来说,带有破折号和多余字符的十六进制形式似乎不必要。但我也喜欢表示十六进制数字的字符串,因为它们不包含在某些情况下可能导致问题的字符,例如“ +”,“ =”等,因此非常安全。

我使用的是网址安全的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('=', '')

2
如果您不打算在任何UUID上下文中使用它,则最好使用random.getrandbits(128).to_bytes(16, 'little')或(出于加密随机性)os.urandom(16)并获得完整的128位随机数(UUIDv4在版本信息中使用6-7位)。或仅使用15个字节(丢失1-2位,而不使用UUIDv4),避免修剪=符号,同时将编码后的大小减小到20个字节(从24个减少到22个),因为3字节的任何倍数都会进行编码到#bytes / 3 * 4base64字符,无需填充。
ShadowRanger

@ShadowRanger是的,基本上就是这个想法。128个随机位,尽可能地短,同时也是URL安全的。理想情况下,它将只使用大写和小写字母,然后使用数字。所以我猜是一个以62为底的字符串。
克里斯·杜特罗

当我使用您的函数时,我从return期待类字节对象的语句中得到类型错误。可以用修复return str(r_uuid).replace('=','')
Mark Kortink

8

如果您需要为模型或唯一字段的主键传递UUID,则下面的代码将返回UUID对象-

 import uuid
 uuid.uuid4()

如果您需要将UUID用作URL的参数,则可以执行以下代码-

import uuid
str(uuid.uuid4())

如果您想要UUID的十六进制值,则可以执行以下操作-

import uuid    
uuid.uuid4().hex

0

此功能是完全可配置的,并根据指定的格式生成唯一的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

3
UUID是标准的,长度不可变。在某些情况下,以可配置的方式生成随机字符串可能会很有用,但在这种情况下则不是。您可以检查en.wikipedia.org/wiki/Universally_unique_identifier的定义。
miguelr

2
最好避免这种情况,否则您可能会遇到兼容性问题(这些不是标准的GUID)
Sylvain Gantois

-1

2019年答案(对于Windows):

如果您希望使用永久性的UUID在Windows上唯一标识一台机器,则可以使用以下技巧:(摘自https://stackoverflow.com/a/58416992/8874388的答案)。

from typing import Optional
import re
import subprocess
import uuid

def get_windows_uuid() -> Optional[uuid.UUID]:
    try:
        # Ask Windows for the device's permanent UUID. Throws if command missing/fails.
        txt = subprocess.check_output("wmic csproduct get uuid").decode()

        # Attempt to extract the UUID from the command's result.
        match = re.search(r"\bUUID\b[\s\r\n]+([^\s\r\n]+)", txt)
        if match is not None:
            txt = match.group(1)
            if txt is not None:
                # Remove the surrounding whitespace (newlines, space, etc)
                # and useless dashes etc, by only keeping hex (0-9 A-F) chars.
                txt = re.sub(r"[^0-9A-Fa-f]+", "", txt)

                # Ensure we have exactly 32 characters (16 bytes).
                if len(txt) == 32:
                    return uuid.UUID(txt)
    except:
        pass # Silence subprocess exception.

    return None

print(get_windows_uuid())

使用Windows API获取计算机的永久UUID,然后处理字符串以确保它是有效的UUID,最后返回一个Python对象(https://docs.python.org/3/library/uuid.html),这为您提供了方便使用数据的方式(例如128位整数,十六进制字符串等)。

祝好运!

PS:子进程调用可能被直接调用Windows内核/ DLL的ctypes代替。但是出于我的目的,此功能是我所需要的。它会进行严格的验证并产生正确的结果。


-1

查看这篇文章,对我有很大帮助。简而言之,对我来说最好的选择是:

import random 
import string 

# defining function for random 
# string id with parameter 
def ran_gen(size, chars=string.ascii_uppercase + string.digits): 
    return ''.join(random.choice(chars) for x in range(size)) 

# function call for random string 
# generation with size 8 and string  
print (ran_gen(8, "AEIOSUMA23")) 

因为我只需要4-6个随机字符,而不需要笨重的GUID。


这似乎与有关UUID的问题完全无关。
与莫妮卡一起在
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.