Skip to content

Instantly share code, notes, and snippets.

@bru32
Last active August 12, 2025 16:37
Show Gist options
  • Save bru32/899ae08d54e64dc453ebdf4bc4de4467 to your computer and use it in GitHub Desktop.
Save bru32/899ae08d54e64dc453ebdf4bc4de4467 to your computer and use it in GitHub Desktop.
tkinter template with an App class.
import tkinter as tk
from tkinter import ttk
class App(tk.Tk):
def __init__(self):
super().__init__()
self.geometry("600x400+500+10")
self.title("App")
self.style = ttk.Style()
self.style.theme_use("clam")
if __name__ == "__main__":
app = App()
app.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment