我如何在Python中创建一个平台独立的GUID/UUID ?我听说在Windows上有一个使用ActivePython的方法,但它只是Windows,因为它使用COM。是否有使用纯Python的方法?
当前回答
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所取代。但对于我的目的,这个函数就是我所需要的。它能进行强有力的验证并产生正确的结果。
其他回答
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'
如果您使用的是Python 2.5或更高版本,则uuid模块已经包含在Python标准发行版中。
Ex:
>>> import uuid
>>> uuid.uuid4()
UUID('5361a11b-615c-42bf-9bdb-e2c3790ada14')
如果您需要为您的模型或唯一字段的主键传递UUID,那么下面的代码将返回UUID对象-
import uuid
uuid.uuid4()
如果你需要传递UUID作为URL的参数,你可以像下面的代码-
import uuid
str(uuid.uuid4())
如果你想要一个UUID的十六进制值,你可以做下面一个-
import uuid
uuid.uuid4().hex
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所取代。但对于我的目的,这个函数就是我所需要的。它能进行强有力的验证并产生正确的结果。
我使用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('=', '')
推荐文章
- 使用Pandas将列转换为行
- 从matplotlib中的颜色映射中获取单个颜色
- 将Pandas或Numpy Nan替换为None以用于MysqlDB
- 使用pandas对同一列进行多个聚合
- 使用Python解析HTML
- django MultiValueDictKeyError错误,我如何处理它
- 如何在for循环期间修改列表条目?
- 我如何在Django中创建一个鼻涕虫?
- 没有名为'django.core.urlresolvers'的模块
- 蟒蛇导出环境文件
- Django - makemigrations -未检测到任何更改
- SQLAlchemy:引擎、连接和会话差异
- 在Python Pandas中删除多个列中的所有重复行
- 更改pandas DataFrame中的特定列名
- 将Pandas多索引转换为列