python的uuid

python的uuid库:

  • python自带的库

序:做签名,序列化用的!

uuid这个类有四个函数 1 3 4 5

  • uuid1 : 基于时间戳
  • uuid4 :基于随机数
  • uuid3 :基于名字MD5
  • uuid5 :基于名字SHA-1

使用:

  import uuid

  u1 = uuid.uuid1()
  u4 = uuid.uuid4()

  print(u1) #4345dcd0-0187-11e8-81fa-40e230b0cb4c
  print(u4) #a0709c7b-b20e-4f69-8afd-89d8badb2fc6

  • 注意: uuid3 uuid5 必须有命名空间 namespace

你可能感兴趣的:(python的uuid)