Created
November 7, 2017 09:46
-
-
Save neoplacer/8302a555fd84783fbcee108b9d782602 to your computer and use it in GitHub Desktop.
UUID GEN
This file contains 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
# UUID GEN | |
import uuid | |
import string | |
import tkMessageBox | |
import os | |
from Tkinter import * | |
c="" | |
for x in range(0, 10): | |
y= str(uuid.uuid1()) | |
print y.upper() | |
c += y.upper() + os.linesep | |
#tkMessageBox.showinfo(title="Greetings", message=c) | |
root = Tk() | |
T = Text(root, height=80, width=40) | |
T.pack() | |
T.insert(END, c) | |
mainloop() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment