How do I create an automatically updating GUI using Tkinter?

from Tkinter import * import time #Tkinter stuff class App(object): def __init__(self): self.root = Tk() self.labeltitle = Label(root, text="", fg="black", font="Helvetica 40 underline bold") self.labeltitle.pack() self.labelstep = Label(root, text="", fg="black", font="Helvetica 30 bold") self.labelstep.pack() self.labeldesc = Label(root, text="", fg="black", font="Helvetica 30 bold") self.labeldesc.pack() self.labeltime = Label(root, text="", fg="black", font="Helvetica 70") self.labeltime.pack() self.labelweight = Label(root, text="", … Read more

Truly custom font in Tkinter

I am making an interface in Tkinter and I need to have custom fonts. Not just, say, Helvetica at a certain size or whatever, but fonts other than what would normally be available on any given platform. This would be something that would be kept with the program as an image file or (preferably) Truetype font file or similar. I don’t want to have to install the desired fonts on every machine that is going to use the program, I just want to carry them around with the program in the same directory.