Skip to content

enricoschumann/taskwarrior.utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

taskwarrior.utils

Utilities for handling Taskwarrior (https://taskwarrior.org/) data: parsing export files, retrieving tags and projects.

Installing the package

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")))

Examples

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"),]

About

Utilities for Handling Taskwarrior Data

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages