https://github.com/fdrennan/biggr2
The bigger better biggr
https://github.com/fdrennan/biggr2
Last synced: 4 months ago
JSON representation
The bigger better biggr
- Host: GitHub
- URL: https://github.com/fdrennan/biggr2
- Owner: fdrennan
- License: other
- Created: 2020-10-10T22:48:18.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-28T07:34:39.000Z (about 4 years ago)
- Last Synced: 2024-08-13T07:13:42.869Z (8 months ago)
- Language: R
- Size: 628 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - fdrennan/biggr2 - The bigger better biggr (R)
README
---
output: github_document
editor_options:
chunk_output_type: console
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# biggr2
[](https://circleci.com/gh/fdrennan/biggr2)
[](undefined)
[](https://www.tidyverse.org/lifecycle/#maturing)

[Code Coverage](https://codecov.io/gh/fdrennan/biggr2)
Download the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("fdrennan/biggr2")
```## Getting Started
#### `s3` storage
```{r}
library(biggr2)
library(dplyr)test_bucket_name <- 'fdrenabc'
s3_client <-
client(
service = "s3",
key_access = Sys.getenv("AWS_ACCESS"),
key_secret = Sys.getenv("AWS_SECRET"),
region = "us-east-2"
)
``````{r}
current_buckets <- s3_list_buckets(client = s3_client)
```