当前位置:  开发笔记 > 编程语言 > 正文

如何在Python中创建GUID/UUID

如何解决《如何在Python中创建GUID/UUID》经验,为你挑选了5个好方法。

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



1> stuartd..:

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

文档:

Python 2:http://docs.python.org/2/library/uuid.html

Python 3:https: //docs.python.org/3/library/uuid.html

示例(处理2和3):

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


另外,看看我写的`shortuuid`模块,因为它允许你生成更短,可读的UUID:https://github.com/stochastic-technologies/shortuuid
好吧,正如你在上面看到的那样,`str(uuid4())`返回包含破折号的UUID的字符串表示,而`uuid4().hex`返回_"UUID为32个字符的十六进制字符串"_
@StavrosKorokithakis:您是否偶然为Python 3.x编写了shortuuid模块?
@JayPatel shortuuid不适用于Python 3吗?如果没有,请提交错误。

2> Jay..:

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

例如:

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



3> Balaji Bogga..:

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



4> Chris Dutrow..:

我使用GUID作为数据库类型操作的随机密钥.

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

我使用url-safe 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('=', '')


如果您不打算在任何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 * 4` base64个字符,无需填充。

5> 小智..:

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

 import uuid
 uuid.uuid4()

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

import uuid
str(uuid.uuid4())

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

import uuid    
uuid.uuid4().hex

推荐阅读
135369一生真爱_890
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有