Created
August 14, 2019 20:23
-
-
Save AgeOfMarcus/54f99adcf7b37f95a1a11e1dc8e0f889 to your computer and use it in GitHub Desktop.
test code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import uuid | |
uid = input('Enter uuid: ') | |
uid = uid if not uid == '' else str(uuid.uuid1()) | |
print("Using UUID: %s, Variable Type: %s" % (uid, repr(type(uid)))) | |
x = uuid.UUID(uid) | |
print('version',x.version) | |
print('time',x.time) | |
print('node',x.node) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment