Socket
Socket
Sign inDemoInstall

ADtkclock

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ADtkclock

ADtkclock can use for simple timer, digital clock and stopwatch


Maintainers
1

#ADtkclock

ADtkclock is simple and "programmable" clock used only in tkinter project.

How to install

Installation via pip

pip install ADtkclock

Short Documentation

####Digital Clock Code to make simple Digital Clock in your tkinter window.

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.

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.

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

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc