This content originally appeared on DEV Community and was authored by Maksim
The New Year is coming soon, and I’ve decided to create ClausTk—a library that will allow you to create vibrant and festive interfaces in Tkinter. I’d love to hear your feedback and create your own programs using ClausTk.
GitHub: https://github.com/limafresh/ClausTk
Documentation: https://limafresh.github.io/ClausTk/
Pip:
pip install claustk
Screenshot (simple program example):
Code example:
import claustk
def click_btn():
print("Merry Christmas and Happy New Year!")
root = claustk.ClausWindow()
button = claustk.ClausRoundedButton(root, text="Click me!", command=click_btn)
button.pack(padx=10, pady=10)
root.happynewyear()
This content originally appeared on DEV Community and was authored by Maksim
