Created
October 18, 2019 10:17
-
-
Save tcgriffith/a6f26a31dd16fce7228bd496a10baca4 to your computer and use it in GitHub Desktop.
use wiki api to retrieve all pages under certain categories.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Untitled" | |
author: "TC" | |
date: "10/18/2019" | |
output: html_document | |
--- | |
```{r setup, include=FALSE} | |
knitr::opts_chunk$set(echo = TRUE) | |
``` | |
```{r} | |
retrieve_allpg = function(url){ | |
fetch_it = TRUE | |
param_continue="" | |
all_rc=list() | |
while(fetch_it){ | |
newurl = paste0(url,param_continue) | |
testit = jsonlite::fromJSON(newurl) | |
all_rc = append(all_rc, testit$query) | |
if (!is.null(testit$continue)){ | |
param_continue = paste0("&cmcontinue=", testit$continue$cmcontinue) | |
} else{ | |
fetch_it = FALSE | |
} | |
} | |
return(do.call(rbind, all_rc)) | |
} | |
``` | |
```{r} | |
url = "https://ja.wikipedia.org/w/api.php?action=query&list=categorymembers&cmtitle=Category:%E6%97%A5%E6%9C%AC%E3%81%AE%E3%81%8A%E7%AC%91%E3%81%84%E3%82%B3%E3%83%B3%E3%83%93&cmlimit=500&format=json&prop=info&inprop=url" | |
data_combi = retrieve_allpg(url) | |
``` | |
```{r} | |
url_geinin = "https://ja.wikipedia.org/w/api.php?action=query&list=categorymembers&cmtitle=Category:%E3%81%8A%E7%AC%91%E3%81%84%E8%8A%B8%E4%BA%BA&cmlimit=500&format=json" | |
data_geinin = retrieve_allpg(url_geinin) | |
``` | |
## clean | |
```{r} | |
library(dplyr) | |
``` | |
```{r} | |
data_geinin.cln = | |
data_geinin %>% | |
filter(ns == 0) %>% | |
mutate(short_title = stringr::str_trim(gsub("\\(.*?\\)","",title)), | |
link=paste0("[wikilink](https://ja.wikipedia.org/?curid=",pageid,")")) | |
``` | |
```{r} | |
data_combi.cln = | |
data_combi %>% | |
filter(ns == 0) %>% | |
mutate(short_title = stringr::str_trim(gsub("\\(.*?\\)", "", title)), | |
link=paste0("[wikilink](https://ja.wikipedia.org/?curid=",pageid,")")) | |
``` | |
```{r} | |
geinin_tbl = data_geinin.cln %>% | |
select(title = short_title, link) %>% | |
knitr::kable(format="markdown") | |
combi_tbl = data_combi.cln %>% | |
select(title = short_title, link) %>% | |
knitr::kable(format="markdown") | |
``` | |
```{r} | |
writeLines(geinin_tbl, "wiki_geinin.md") | |
writeLines(combi_tbl, "wiki_combi.md") | |
``` | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment