├── .Rbuildignore ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── RcppExports.R ├── aaa.R ├── as_wibble.R ├── as_wobble.R ├── asdf.R ├── h_nodes.R ├── h_text.R ├── nodes_data.R ├── parse_json.R ├── read_wibble.R ├── scrape.R ├── scrape_links.R ├── unpack.R ├── utils-pipe.R ├── utils.R ├── wabble.R ├── webble.R ├── webdata.R ├── webpage.R ├── wibble-package.R ├── wibble.R ├── wobble.R └── wutate.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── docs ├── CNAME ├── CODE_OF_CONDUCT.html ├── LICENSE-text.html ├── LICENSE.html ├── authors.html ├── docsearch.css ├── docsearch.js ├── extra.css ├── favicon.ico ├── index.html ├── link.svg ├── logo.png ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Webpage.html │ ├── coerce_tbls.html │ ├── figures │ │ └── logo.png │ ├── index.html │ ├── parse_json.html │ ├── pipe.html │ ├── read_as_xml.html │ ├── scrape_links.html │ ├── tbl_and_bind.html │ ├── unpack.html │ └── unpack_all.html └── sitemap.xml ├── make.R ├── man ├── Webpage.Rd ├── as_wibble.Rd ├── as_wobble.Rd ├── coerce_tbls.Rd ├── figures │ └── logo.png ├── h_node.Rd ├── h_nodes.Rd ├── h_text.Rd ├── node_chr.Rd ├── nodes_chr.Rd ├── parse_json.Rd ├── pipe.Rd ├── read_as_xml.Rd ├── read_wibble.Rd ├── scrape_links.Rd ├── tbl_and_bind.Rd ├── unpack.Rd ├── unpack_all.Rd ├── wabble.Rd ├── webble.Rd ├── wibble-package.Rd ├── wibble.Rd ├── wobble.Rd └── wutate.Rd ├── pkgdown └── extra.css ├── src ├── .gitignore ├── Makevars ├── Makevars.win ├── RcppExports.cpp ├── read_file.cpp ├── regex.cpp ├── wabble.cpp ├── webble.cpp ├── wibble.cpp ├── wobble.cpp └── wubble.cpp └── wibble.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Michael W. Kearney 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/aaa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/aaa.R -------------------------------------------------------------------------------- /R/as_wibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/as_wibble.R -------------------------------------------------------------------------------- /R/as_wobble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/as_wobble.R -------------------------------------------------------------------------------- /R/asdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/asdf.R -------------------------------------------------------------------------------- /R/h_nodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/h_nodes.R -------------------------------------------------------------------------------- /R/h_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/h_text.R -------------------------------------------------------------------------------- /R/nodes_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/nodes_data.R -------------------------------------------------------------------------------- /R/parse_json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/parse_json.R -------------------------------------------------------------------------------- /R/read_wibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/read_wibble.R -------------------------------------------------------------------------------- /R/scrape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/scrape.R -------------------------------------------------------------------------------- /R/scrape_links.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/scrape_links.R -------------------------------------------------------------------------------- /R/unpack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/unpack.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/wabble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/wabble.R -------------------------------------------------------------------------------- /R/webble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/webble.R -------------------------------------------------------------------------------- /R/webdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/webdata.R -------------------------------------------------------------------------------- /R/webpage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/webpage.R -------------------------------------------------------------------------------- /R/wibble-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/wibble-package.R -------------------------------------------------------------------------------- /R/wibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/wibble.R -------------------------------------------------------------------------------- /R/wobble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/wobble.R -------------------------------------------------------------------------------- /R/wutate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/R/wutate.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | wibble.mikewk.com 2 | -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/CODE_OF_CONDUCT.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/extra.css -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Webpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/reference/Webpage.html -------------------------------------------------------------------------------- /docs/reference/coerce_tbls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/reference/coerce_tbls.html -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/parse_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/reference/parse_json.html -------------------------------------------------------------------------------- /docs/reference/pipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/reference/pipe.html -------------------------------------------------------------------------------- /docs/reference/read_as_xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/reference/read_as_xml.html -------------------------------------------------------------------------------- /docs/reference/scrape_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/reference/scrape_links.html -------------------------------------------------------------------------------- /docs/reference/tbl_and_bind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/reference/tbl_and_bind.html -------------------------------------------------------------------------------- /docs/reference/unpack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/reference/unpack.html -------------------------------------------------------------------------------- /docs/reference/unpack_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/reference/unpack_all.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /make.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/make.R -------------------------------------------------------------------------------- /man/Webpage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/Webpage.Rd -------------------------------------------------------------------------------- /man/as_wibble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/as_wibble.Rd -------------------------------------------------------------------------------- /man/as_wobble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/as_wobble.Rd -------------------------------------------------------------------------------- /man/coerce_tbls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/coerce_tbls.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/h_node.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/h_node.Rd -------------------------------------------------------------------------------- /man/h_nodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/h_nodes.Rd -------------------------------------------------------------------------------- /man/h_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/h_text.Rd -------------------------------------------------------------------------------- /man/node_chr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/node_chr.Rd -------------------------------------------------------------------------------- /man/nodes_chr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/nodes_chr.Rd -------------------------------------------------------------------------------- /man/parse_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/parse_json.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/read_as_xml.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/read_as_xml.Rd -------------------------------------------------------------------------------- /man/read_wibble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/read_wibble.Rd -------------------------------------------------------------------------------- /man/scrape_links.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/scrape_links.Rd -------------------------------------------------------------------------------- /man/tbl_and_bind.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/tbl_and_bind.Rd -------------------------------------------------------------------------------- /man/unpack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/unpack.Rd -------------------------------------------------------------------------------- /man/unpack_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/unpack_all.Rd -------------------------------------------------------------------------------- /man/wabble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/wabble.Rd -------------------------------------------------------------------------------- /man/webble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/webble.Rd -------------------------------------------------------------------------------- /man/wibble-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/wibble-package.Rd -------------------------------------------------------------------------------- /man/wibble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/wibble.Rd -------------------------------------------------------------------------------- /man/wobble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/wobble.Rd -------------------------------------------------------------------------------- /man/wutate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/man/wutate.Rd -------------------------------------------------------------------------------- /pkgdown/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/pkgdown/extra.css -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- 1 | PKG_LIBS = $(shell $(R_HOME)/bin/Rscript -e "Rcpp:::LdFlags()" ) -L/usr/local/lib -lcurl 2 | -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/read_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/src/read_file.cpp -------------------------------------------------------------------------------- /src/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/src/regex.cpp -------------------------------------------------------------------------------- /src/wabble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/src/wabble.cpp -------------------------------------------------------------------------------- /src/webble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/src/webble.cpp -------------------------------------------------------------------------------- /src/wibble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/src/wibble.cpp -------------------------------------------------------------------------------- /src/wobble.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/wubble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/src/wubble.cpp -------------------------------------------------------------------------------- /wibble.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkearney/wibble/HEAD/wibble.Rproj --------------------------------------------------------------------------------