Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tidyverse/googledrive

Google Drive R API
https://github.com/tidyverse/googledrive

google-drive r

Last synced: 2 months ago
JSON representation

Google Drive R API

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r setup, include = FALSE}
auth_success <- tryCatch(
googledrive:::drive_auth_docs(),
googledrive_auth_internal_error = function(e) e
)

knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
error = TRUE,
purl = googledrive::drive_has_token(),
eval = googledrive::drive_has_token()
)
```

```{r eval = !googledrive::drive_has_token(), echo = FALSE, comment = NA}
googledrive:::drive_bullets(c(
"Code chunks will not be evaluated, because:",
strsplit(auth_success$message, split = "\n")[[1]]
))
googledrive::drive_deauth()
```

# googledrive

[![CRAN status](https://www.r-pkg.org/badges/version/googledrive)](https://CRAN.R-project.org/package=googledrive)
[![R-CMD-check](https://github.com/tidyverse/googledrive/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/tidyverse/googledrive/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/tidyverse/googledrive/branch/main/graph/badge.svg)](https://app.codecov.io/gh/tidyverse/googledrive?branch=main)

## Overview

googledrive allows you to interact with files on Google Drive from R.

## Installation

Install the CRAN version:

```{r, eval = FALSE}
install.packages("googledrive")
```

Or install the development version from GitHub:

```{r, eval = FALSE}
# install.packages("pak")
pak::pak("tidyverse/googledrive")
```

## Usage

Please see the package website:

Here's a teaser that uses googledrive to view some of the files you see on (up to `n_max = 25`, in this case):

```{r}
library("googledrive")
drive_find(n_max = 25)
```

## Contributing

If you'd like to contribute to the development of googledrive, please read [these guidelines](https://googledrive.tidyverse.org/CONTRIBUTING.html).

Please note that the googledrive project is released with a [Contributor Code of Conduct](https://googledrive.tidyverse.org/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.

## Privacy

[Privacy policy](https://www.tidyverse.org/google_privacy_policy)