Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fdrennan/biggr2
The bigger better biggr
https://github.com/fdrennan/biggr2
Last synced: 8 days 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 (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-28T07:34:39.000Z (almost 4 years ago)
- Last Synced: 2024-08-13T07:13:42.869Z (4 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
[![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)
![](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)
```