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
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file ADtkclock-1.0.tar.gz.
File metadata
- Download URL: ADtkclock-1.0.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a8f5b7275155321dd570e4ed6701c0e3e471142e925be321924068d01fec950
|
|
| MD5 |
d6a0e59ee2831dfada2a755376ddbd37
|
|
| BLAKE2b-256 |
a3c79b89410e1c289aa4725c9f0e956f2b39333f38744ac3d28e7b5f3d8610fb
|