Utilities for handling Taskwarrior (https://taskwarrior.org/) data: parsing export files, retrieving tags and projects.
The latest build of the package is always available from https://enricoschumann.net/R/packages/taskwarrior.utils/.
To install the package from within an R session, type:
install.packages("taskwarrior.utils", ## development version
repos = c("https://enricoschumann.net/R",
getOption("repos")))
library("taskwarrior.utils")
file <- "<path to export>/tasks.json" ## in a shell: `task export > tasks.json`
tasks <- read_tasks(file)
tasks <- as.data.frame(tasks)
str(tasks)
tasks <- tasks[!tasks$status %in% c("completed", "deleted"),]