Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mkearney/wibble

Web Data Frames
https://github.com/mkearney/wibble

data-frames html r r-package rstats tbl tibble unstructured-data web-data web-scraping wrangling xml

Last synced: 27 days ago
JSON representation

Web Data Frames

Awesome Lists containing this project

README

        

---
output: github_document
---

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

[![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)

> Web Data Frames

## Install

Install the dev version from Github:

```{r, eval = FALSE}
## from github
remotes::install_github("mkearney/wibble")
```

## Example

Scrape/wrangle CNN US site

```{r}
## load pkg
library(wibble)

## scrape CNN
cnn <- webble("https://cnn.com/us")

## wibble and wobble
cnn %>%
wibble() %>%
wobble("body div") %>%
wobble("ul")
```