|
@@ -8,6 +8,18 @@ def uuid_str_to_int(uuid_str: str) -> int:
|
|
return int(uuid_str.replace('-', ''), 16)
|
|
return int(uuid_str.replace('-', ''), 16)
|
|
|
|
|
|
|
|
|
|
|
|
+def uuid_int_to_str(uuid_int: str) -> str:
|
|
|
|
+ """
|
|
|
|
+ >>> uuid_int_to_str(129260377989791042510121038559452028112)
|
|
|
|
+ '613ea4ac-a4cf-4026-8e99-1904b2bb5cd0'
|
|
|
|
+ >>> uuid_int_to_str(158993652234522396927268087548725737125)
|
|
|
|
+ '779d1046-d163-4b2b-8126-254f631cb6a5'
|
|
|
|
+ """
|
|
|
|
+ uuid_hex = hex(uuid_int)[2:]
|
|
|
|
+ return '-'.join((uuid_hex[0:8], uuid_hex[8:12], uuid_hex[12:16],
|
|
|
|
+ uuid_hex[16:20], uuid_hex[20:]))
|
|
|
|
+
|
|
|
|
+
|
|
def uuid_int_to_bytes(uuid_siv: int) -> bytes:
|
|
def uuid_int_to_bytes(uuid_siv: int) -> bytes:
|
|
"""
|
|
"""
|
|
>>> uuid_int_to_bytes(129260377989791042510121038559452028112)
|
|
>>> uuid_int_to_bytes(129260377989791042510121038559452028112)
|
|
@@ -18,6 +30,16 @@ def uuid_int_to_bytes(uuid_siv: int) -> bytes:
|
|
return uuid_siv.to_bytes(16, byteorder='big')
|
|
return uuid_siv.to_bytes(16, byteorder='big')
|
|
|
|
|
|
|
|
|
|
|
|
+def uuid_bytes_to_int(uuid_bytes: bytes) -> int:
|
|
|
|
+ """
|
|
|
|
+ >>> uuid_bytes_to_int(b'a>\\xa4\\xac\\xa4\\xcf@&\\x8e\\x99\\x19\\x04\\xb2\\xbb\\\\\\xd0')
|
|
|
|
+ 129260377989791042510121038559452028112
|
|
|
|
+ >>> uuid_bytes_to_int(b'w\\x9d\\x10F\\xd1cK+\\x81&%Oc\\x1c\\xb6\\xa5')
|
|
|
|
+ 158993652234522396927268087548725737125
|
|
|
|
+ """
|
|
|
|
+ return int.from_bytes(uuid_bytes, byteorder='big', signed=False)
|
|
|
|
+
|
|
|
|
+
|
|
def uuid_str_to_bytes(uuid_str: str) -> bytes:
|
|
def uuid_str_to_bytes(uuid_str: str) -> bytes:
|
|
"""
|
|
"""
|
|
>>> uuid_str_to_bytes('613ea4ac-a4cf-4026-8e99-1904b2bb5cd0')
|
|
>>> uuid_str_to_bytes('613ea4ac-a4cf-4026-8e99-1904b2bb5cd0')
|
|
@@ -26,3 +48,13 @@ def uuid_str_to_bytes(uuid_str: str) -> bytes:
|
|
b'w\\x9d\\x10F\\xd1cK+\\x81&%Oc\\x1c\\xb6\\xa5'
|
|
b'w\\x9d\\x10F\\xd1cK+\\x81&%Oc\\x1c\\xb6\\xa5'
|
|
"""
|
|
"""
|
|
return uuid_int_to_bytes(uuid_str_to_int(uuid_str))
|
|
return uuid_int_to_bytes(uuid_str_to_int(uuid_str))
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+def uuid_bytes_to_str(uuid_bytes: bytes) -> str:
|
|
|
|
+ """
|
|
|
|
+ >>> uuid_bytes_to_str(b'a>\\xa4\\xac\\xa4\\xcf@&\\x8e\\x99\\x19\\x04\\xb2\\xbb\\\\\\xd0')
|
|
|
|
+ '613ea4ac-a4cf-4026-8e99-1904b2bb5cd0'
|
|
|
|
+ >>> uuid_bytes_to_str(b'w\\x9d\\x10F\\xd1cK+\\x81&%Oc\\x1c\\xb6\\xa5')
|
|
|
|
+ '779d1046-d163-4b2b-8126-254f631cb6a5'
|
|
|
|
+ """
|
|
|
|
+ return uuid_int_to_str(uuid_bytes_to_int(uuid_bytes))
|