DEV Community

Maksim
Maksim

Posted on

ClausTk - A Tkinter library for creating New Year's and Christmas-themed interfaces

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
Enter fullscreen mode Exit fullscreen mode

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()

Enter fullscreen mode Exit fullscreen mode

Top comments (0)