Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 594 Bytes

File metadata and controls

18 lines (10 loc) · 594 Bytes

Beautiful Simple Countdown Widget

Alt Text

This is a simple countdown widget for Python, implemented with tkinter. As tkinter is part of the Python standard library, no additional sources are required. Calling the start() method launches a separate process which runs the gui thread. After the countdown finishes, the process terminates.

Usage example:

from CountdownWidget import CountdownWidget

if __name__ == "__main__":
    countdownWidget = CountdownWidget(countdownMs = 10000)
    countdownWidget.start()