Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/jbgruber/cookiemonster
- Owner: JBGruber
- License: gpl-3.0
- Created: 2023-08-10T12:39:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-05T09:14:14.000Z (3 months ago)
- Last Synced: 2024-10-15T04:10:06.487Z (2 months ago)
- Language: R
- Homepage:
- Size: 118 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE.md
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"}
```