-
Notifications
You must be signed in to change notification settings - Fork 2
/
README.Rmd
63 lines (44 loc) · 1.42 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
output: github_document
editor_options:
chunk_output_type: console
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# biggr2
<!-- badges: start -->
[![CircleCI build status](https://circleci.com/gh/fdrennan/biggr2.svg?style=svg)](https://circleci.com/gh/fdrennan/biggr2)
[![codecov](https://codecov.io/gh/fdrennan/biggr2/branch/main/graph/badge.svg?token=bql3Sg35ae)](undefined)
[![Lifecycle: maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/#maturing)
<!-- badges: end -->
![](https://codecov.io/gh/fdrennan/biggr2/commit/cffdd2c603842d321bcc29b00a78d4e1f732cfa1/graphs/sunburst.svg)
[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)
```