Tool to log day-to-day software tasks
I have used sqlite3 for the backend database. Commands and arguments are being passed onto the python file using the batch file. The NSIS install script has been made using HM NIS Edit Tool.
To use the tool:
- Add to PATH the directory where the files are stored
- Now you can use the tool from any directory
or just download and run Trackwiser_setup.exe
file.
Commands:
- add: to add a log entry into the database
log add "Completed Codeforces Round 921"
- fetch: to fetch a log entry of the specified date from the database
log fetch "01/02/2024"
- list: to list log records from the past specified number of days
log list 3
- range: to list records from a specified range of past days
log range "07/01/2024" "01/02/2024"
- modify: to modify a previous log entry
log modify "23/01/2024" "Created login page of chat application"
- del: to delete a previous log entry
log del "02/01/2024"