Skip to content

dvklopfenstein/timetracker

Repository files navigation

Timetracker-csv

PyPI - Version DOI GitHub License

Track time spent on multiple projects, one repo at a time from the CLI

Time is saved in pandas-friendly csv files

timetracker

Advantages

  • Libre Software (aka open-source)
  • Quick to set up
  • Own your data
  • NO invasive tracking ever of keystrokes, browser activity, mouse-clicks, etc., as is done by multitudinous other timetracking apps
  • Human-readable ASCII data stored in csv (comma-separated values) plaintext files:
    • Ready for pandas, the Python Data Analysis Library for tabular data
    • Editable using many editors, including vim and Notepad++
  • Modify your data if you forget to log time
  • Quickly see the current task being recorded
  • Quickly see elapsed time spent on the current task
  • No clicking and clicking and clicking on a GUI
  • No required use of the internet or cloud-based services
  • Data supported for each time interval includes:
    • A required free-form descriptive message
    • An optional activity or type
    • Any number of tags
  • Export data for import by external time-tracking viewers

Quickstart

The name used by this time tracker is determined by the USER environmental variable by default.

1) Initialize a timetracker project

$ trk init
Initialized timetracker directory: /PROJDIR/.timetracker

2) Start the timer

$ trk start
Timetracker started now: Mon 09:00 AM: 2025-03-24 09:00:00

3) Stop the timer

$ trk stop -m 'Accomplished the planned task'
Timer stopped at Mon 2025-03-24 12:00:00 PM
Elapsed H:M:S 0:03:00 appended to timetracker_timetracker_dvk.csv

4) Report my time units for this project

$ trk report
Day  Date        Span     Total  Description
Sun  2025-03-24  03:00    03:00  Accomplished the planned task

You can also get the total hours that you spent on a project:

$ trk hours
0:03:00 H:M:S or 3.000 hours

Installation

Install with timetracker-csv pip:

$ pip install timetracker-csv

Or install from source:

$ git clone [email protected]:dvklopfenstein/timetracker.git
$ cd timetracker
$ pip install .

Other timetrackers

Copyright (C) 2025-present, DV Klopfenstein, PhD. All rights reserved