An open API service indexing awesome lists of open source software.

https://github.com/ThinkR-open/rtodoist

Package to call the todoist API. Manage your ToDo lists with todoist from R.
https://github.com/ThinkR-open/rtodoist

Last synced: 3 months ago
JSON representation

Package to call the todoist API. Manage your ToDo lists with todoist from R.

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)

```

# rtodoist

[![R build status](https://github.com/ThinkR-open/rtodoist/workflows/R-CMD-check/badge.svg)](https://github.com/ThinkR-open/rtodoist/actions)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://www.tidyverse.org/lifecycle/#stable)
[![CRAN status](https://www.r-pkg.org/badges/version/rtodoist)](https://CRAN.R-project.org/package=rtodoist)
[![R-CMD-check](https://github.com/ThinkR-open/rtodoist/workflows/R-CMD-check/badge.svg)](https://github.com/ThinkR-open/rtodoist/actions)

This package allows to use the todoist API. You will be able to add projects and tasks to your todoist account.

To find information about todoist API :

## Installation

You can install from CRAN :

```r
install.packages("rtodoist")
```

You can install the development version of rtodoist with:

``` r
remotes::install_github("ThinkR-open/rtodoist")
```

## Example

```{r example, eval=FALSE}
library(rtodoist)

add_project("test") %>%
add_tasks_in_project("my_task")
```

To find more details about the features, look at the 'How it works' vignette.