Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jbgruber/cookiemonster

A package to deal with cookies 🍪 in R.
https://github.com/jbgruber/cookiemonster

Last synced: 30 days ago
JSON representation

A package to deal with cookies 🍪 in R.

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# cookiemonster

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

Welcome to the `cookiemonster` package, your friendly solution to managing browser cookies in R! 🍪
Browser cookies are a way for browsers to recognise a user and their settings throughout sessions (e.g., if you accept a site's terms of service, this acceptance is saved as a cookie).
The focus of `cookiemonster` lies on making it possible to use these cookies from `R`to make request to the site (e.g., for web-scraping or automation).
If you are looking for a way to use cookies in shiny apps you can check out the [cookies package](https://CRAN.R-project.org/package=cookies).

## Installation

Install the package from CRAN with:

``` r
install.packages("cookiemonster")
```

You can install the development version of `cookiemonster` from
[GitHub](https://github.com/) with:

``` r
# install.packages("remotes")
remotes::install_github("JBGruber/cookiemonster")
```

```{r, child="vignettes/cookies.Rmd"}
```