Skip to main content

ADtkclock can use for simple timer, digital clock and stopwatch

Project description

#**_ADtkclock_**

ADtkclock is simple and “programmable” clock used only in tkinter project. ### How to install Installation via pip `commandline pip install ADtkclock `

### Short Documentation

####***Digital Clock*** Code to make simple _**Digital Clock**_ in your tkinter window. `python import tkinter from ADtkclock import DigitalClock root = tkinter.Tk() label = tkinter.Label(root, font=("TkTextFont", 50)) label.pack() DigitalClock(label) root.mainloop() ` ####***Timer*** Code to make simple _Timer_ in your tkinter window. `python import tkinter from ADtkclock import Timer root = tkinter.Tk() label = tkinter.Label(root, font=("TkTextFont", 50)) label.pack() Timer(label, minute=10, second=10) root.mainloop() ` ####***Stopwatch*** Code to make simple _Timer_ in your tkinter window. `python import tkinter from ADtkclock import StopWatch root = tkinter.Tk() label = tkinter.Label(root, font=("TkTextFont", 50)) label.pack() stopwatch = StopWatch(label) stopwatch.start() root.mainloop() `

####License MIT

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ADtkclock-1.0.tar.gz (2.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page