Installation

Install with pip

pip install bettertkinter

That's it! You can now import and use BetterTkinter in your Python projects.

Quick Example

import tkinter as tk import bettertkinter as btk root = tk.Tk() root.title("My App") # Create a better button button = btk.BTkButton(root, text="Click Me!") button.pack(pady=20) root.mainloop()