mirror of
https://github.com/SystemRage/py-kms.git
synced 2024-11-23 00:35:38 +01:00
7 lines
90 B
Python
7 lines
90 B
Python
#!/usr/bin/env python3
|
|
|
|
import uuid
|
|
|
|
key = uuid.uuid4().hex
|
|
print(key[:16]) #*2to3*
|