Thanks to visit codestin.com
Credit goes to github.com

Skip to content

CTkManager is a helper library designed to streamline CustomTkinter GUI development. It integrates PIL for image support and uses Enum to keep configuration clean and easy.

License

McDjXdLol/CTkManager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CTkManager

CTkManager is a lightweight Python library designed to simplify managing CustomTkinter interfaces.
It uses Pillow (PIL) for image handling and Enum for easy theme and color scheme management.


Features

  • Simple creation and configuration of CustomTkinter windows
  • Built-in methods for common widgets (buttons, panels, labels, etc.)
  • Theme and color scheme support via Enums
  • Easy image integration with Pillow

Requirements

  • Python 3.6+ (your version 3.13.2 works fine)
  • customtkinter
  • pillow

Installation

pip install CTkManager

Example

from CTkManager import CTkManager

# Initialize
manager = CTkManager()
root = manager.run()

# Add a button
manager.add_button(root, width=100, height=40, bg="gray", fg="white", text="Click me", corner=10, command=lambda: print("Clicked!"))

root.mainloop()

License

MIT LICENSE

About

CTkManager is a helper library designed to streamline CustomTkinter GUI development. It integrates PIL for image support and uses Enum to keep configuration clean and easy.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages