Time Recorder App : V1.0

Work Time Recorder App : Release V1.0 #

First working version of the app.

For more background refer to Introduction

This version caters to the following:

  • Simple time display
  • Python 2 and Python 3 compatibility
  • Fail safe environment
  • No Terminal prompt execution

Screenshot #

Here is a screenshot:

Screenshot of V1 release of the application

Download #

Note the pyw extension for the window executable of python.

timer1.pyw

One might wonder why this is not in Github - well simplicity. I wanted to have a more documented release. Not that one can’t do it there. It was just an initial idea and rolling with that.

Package Dependencies #

Windows #

Nothing much here. Since the default python installation includes tkinter

Linux #

Need to install python-tk or python3-tk for Python 2.x and Python 3.x respectively.

Ubuntu/debian :

1
2
3
4
5
6
sudo apt-get install python-tk

## Or

sudo apt-get install python3-tk

Arch / Manjaro :

1
2
3
4
5
6
sudo pacman -S python-tk

## Or

sudo pacman -S python3-tk