https://github.com/cloudyr/googleCloudStorageR
Google Cloud Storage API to R
https://github.com/cloudyr/googleCloudStorageR
api api-client google-cloud-storage googleauthr r
Last synced: 5 months ago
JSON representation
Google Cloud Storage API to R
- Host: GitHub
- URL: https://github.com/cloudyr/googleCloudStorageR
- Owner: cloudyr
- License: other
- Created: 2016-04-01T21:29:35.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-06-28T19:46:30.000Z (10 months ago)
- Last Synced: 2024-08-13T07:15:36.998Z (8 months ago)
- Topics: api, api-client, google-cloud-storage, googleauthr, r
- Language: R
- Homepage: https://code.markedmondson.me/googleCloudStorageR
- Size: 1.04 MB
- Stars: 103
- Watchers: 6
- Forks: 29
- Open Issues: 31
-
Metadata Files:
- Readme: Readme.md
- Changelog: NEWS.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - cloudyr/googleCloudStorageR - Google Cloud Storage API to R (R)
README
# googleCloudStorageR
R library for interacting with the Google Cloud Storage JSON API ([api docs](https://cloud.google.com/storage/docs/json_api/)).
## Setup
Please refer to the [googleCloudStorageR](https://code.markedmondson.me/googleCloudStorageR) website for most up to date documentation:
https://code.markedmondson.me/googleCloudStorageR
## Installation
[](http://cran.r-project.org/package=googleCloudStorageR)

[](http://codecov.io/github/cloudyr/googleCloudStorageR?branch=master)This package is on CRAN:
```R
# latest stable version
install.packages("googleCloudStorageR")
```Or, to pull a potentially unstable version directly from GitHub:
```R
if(!require("remotes")){
install.packages("remotes")
}
remotes::install_github("cloudyr/googleCloudStorageR")
```---
[](https://github.com/cloudyr)