Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jchrom/trelloR
R API client for Trello
https://github.com/jchrom/trelloR
api r trello
Last synced: 3 months ago
JSON representation
R API client for Trello
- Host: GitHub
- URL: https://github.com/jchrom/trelloR
- Owner: jchrom
- Created: 2015-04-21T21:20:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-08-27T19:23:33.000Z (about 1 year ago)
- Last Synced: 2024-06-05T00:43:17.097Z (5 months ago)
- Topics: api, r, trello
- Language: R
- Homepage: http://jchrom.github.io/trelloR/
- Size: 1.79 MB
- Stars: 42
- Watchers: 5
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
- jimsghstars - jchrom/trelloR - R API client for Trello (R)
README
---
output: github_document
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```API client for Trello
---------------------[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/trelloR)](https://cran.r-project.org/package=trelloR/)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![R-CMD-check](https://github.com/jchrom/trelloR/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jchrom/trelloR/actions/workflows/R-CMD-check.yaml)The purpose of `trelloR` is to help you interact with the [Trello API](https://developer.atlassian.com/cloud/trello/rest) from R.
### Example
Request cards and return a data frame:
```r
library(trelloR)
board = "https://trello.com/b/wVWPK9I4/r-client-for-the-trello-api"
cards = get_board_cards(board)
```### Get it from CRAN
```r
install.packages("trelloR")
```### Get development version
```r
# install.packages("remotes")
remotes::install_github("jchrom/trelloR")
```### Disclaimer
`trelloR` is not affiliated, associated, authorized, endorsed
by or in any way officially connected to Trello, Inc. ().