让我们说我在销售软件并且我不希望它被泄露(当然,使用Python并不是最好的,因为所有代码都是开放的但是让我们只是去吧),我想获得一个只有用户PC才有的唯一ID,并将其存储在我脚本的列表中。现在,每当有人执行该脚本时,它将遍历列表并检查该唯一ID是否与列表中的ID匹配。
这是否可能,如果是这样,如何在Python中实现它?
答案 0 :(得分:0)
Python有一个唯一的id库uuid
。 https://docs.python.org/3.5/library/uuid.html
import uuid
# Create a uuid
customer_id = str(uuid.uuid4())
software_ids = [customer_id] # Store in a safe secure place
can_run = customer_id in software_ids
print(can_run)