Skip to content

Instantly share code, notes, and snippets.

@neoplacer
Created November 7, 2017 09:46
Show Gist options
  • Save neoplacer/8302a555fd84783fbcee108b9d782602 to your computer and use it in GitHub Desktop.
Save neoplacer/8302a555fd84783fbcee108b9d782602 to your computer and use it in GitHub Desktop.
UUID GEN
# 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