Compare commits
19 Commits
kaylea/mas
...
translatio
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b56ed26f4 | |||
| 207b1f8b95 | |||
| 282208507a | |||
| e720653a23 | |||
| a9f129f1d6 | |||
| 18118328cc | |||
|
|
c025a526e8 | ||
| 6e7afee8b3 | |||
| 070a1623aa | |||
| f548eeedd5 | |||
| 8668a764ad | |||
| 96286a07d8 | |||
| 6905a52044 | |||
| 36d9a1aa8a | |||
|
|
f35216cfce | ||
| d75ef80b4a | |||
| 36167295ec | |||
| 308d462e76 | |||
| 836098461e |
@@ -1,7 +1,7 @@
|
|||||||
# COVID-19 Digital Observatory
|
# COVID-19 Digital Observatory
|
||||||
The COVID-19 Digital Observatory collects, aggregates, and distributes data from social media, search engine results, and Wikipedia to support social and data science research related to the pandemic.
|
The COVID-19 Digital Observatory collects, aggregates, and distributes data from social media, search engine results, and Wikipedia to support social and data science research related to the pandemic.
|
||||||
|
|
||||||
The [community data science collective](https://wiki.communitydata.science/Main_Page "The community data science collective wiki") is the early stages of building this project. We expect to make rapid progess and to begin releasing code and data soon.
|
[The community data science collective](https://wiki.communitydata.science/Main_Page "The community data science collectivewiki") is the early stages of building this project. We expect to make rapid progess and to begin releasing code and data soon.
|
||||||
|
|
||||||
We eagerly welcome contributors! Please get in touch.
|
We eagerly welcome contributors! Please get in touch.
|
||||||
Contributors are held to the [code of conduct](code_of_conduct.md "link to code of conduct.md").
|
Contributors are held to the [code of conduct](code_of_conduct.md "link to code of conduct.md").
|
||||||
|
|||||||
3
transliterations/README.md
Normal file
3
transliterations/README.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Transliterations
|
||||||
|
|
||||||
|
This part of the project collects tranliterations of key phrases related to COVID-19 using Wikidata. We search the Wikidata API for entities in `src/wikidata_search.py` and then we make simple SPARQL queries in `src/wikidata_transliterations.py` to collect labels and aliases the entities. The labels come with language metadata. This seems to provide a decent initial list of relevant terms across multiple languages.
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
"term","date","query.1","query.2","query.3","query.4","query.5"
|
||||||
|
"coronavirus","2020-03-27",coronavirus update,corona,coronavirus symptoms,news coronavirus,coronavirus cases
|
||||||
|
"covid-19","2020-03-27",covid-19 coronavirus,coronavirus,covid,covid-19 cases,covid 19
|
||||||
|
"covid-19 pandemic","2020-03-27",coronavirus,covid-19 coronavirus pandemic,coronavirus pandemic,who,is covid-19 a pandemic
|
||||||
|
"covid19","2020-03-27",covid,covid 19,coronavirus covid19,coronavirus,covid19 cases
|
||||||
|
"sars-cov-2","2020-03-27",coronavirus,coronavirus sars-cov-2,covid-19,covid-19 sars-cov-2,sars
|
||||||
|
28
transliterations/analysis/related_searches_example.R
Normal file
28
transliterations/analysis/related_searches_example.R
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
### COVID-19 Digital Observatory
|
||||||
|
### 2020-03-28
|
||||||
|
###
|
||||||
|
### Minimal example analysis file using trending search data
|
||||||
|
|
||||||
|
### Identify data source directory and file
|
||||||
|
DataDir <- ("../data/output/")
|
||||||
|
DataFile <- ("related_searches_top.csv")
|
||||||
|
|
||||||
|
### Import and cleanup data
|
||||||
|
related.searches.top <- read.table(paste(DataDir,DataFile,
|
||||||
|
sep=""),
|
||||||
|
sep=",", header=TRUE,
|
||||||
|
stringsAsFactors=FALSE)
|
||||||
|
|
||||||
|
### Aggregate top 5 search queries by term/day
|
||||||
|
top5.per.term.date <- aggregate(query ~ term + date,
|
||||||
|
data=related.searches.top,
|
||||||
|
head, 5)
|
||||||
|
|
||||||
|
## Might cleanup a bit for further analysis or visualization...
|
||||||
|
top5.per.term.date$date <- as.Date(top5.per.term.date$date)
|
||||||
|
|
||||||
|
### Export
|
||||||
|
write.table(top5.per.term.date,
|
||||||
|
file="output/top5_queries_per_term_per_date.csv", sep=",",
|
||||||
|
row.names=FALSE)
|
||||||
|
|
||||||
6
transliterations/data/input/base_terms.txt
Normal file
6
transliterations/data/input/base_terms.txt
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
coronavirus
|
||||||
|
covid-19
|
||||||
|
covid19
|
||||||
|
sars-cov-2
|
||||||
|
covid-19 pandemic
|
||||||
|
sars-cov-2 pandemic
|
||||||
9300
transliterations/data/output/2020-03-27_wikidata_entity_labels.csv
Normal file
9300
transliterations/data/output/2020-03-27_wikidata_entity_labels.csv
Normal file
File diff suppressed because it is too large
Load Diff
10806
transliterations/data/output/2020-03-28_wikidata_entity_labels.csv
Normal file
10806
transliterations/data/output/2020-03-28_wikidata_entity_labels.csv
Normal file
File diff suppressed because it is too large
Load Diff
36
transliterations/data/output/daily_google_trends.csv
Normal file
36
transliterations/data/output/daily_google_trends.csv
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
date,term,top
|
||||||
|
2020-03-27,COVID-19,0
|
||||||
|
2020-03-27,Boris Johnson,1
|
||||||
|
2020-03-27,Thomas Massie,2
|
||||||
|
2020-03-27,Ozark,3
|
||||||
|
2020-03-27,Drew Brees,4
|
||||||
|
2020-03-27,Bill Gates,5
|
||||||
|
2020-03-27,Kourtney Kardashian,6
|
||||||
|
2020-03-27,Doris Burke,7
|
||||||
|
2020-03-27,Pope Francis,8
|
||||||
|
2020-03-27,Krispy Kreme,9
|
||||||
|
2020-03-27,Roman Reigns,10
|
||||||
|
2020-03-27,A Million Little Things,11
|
||||||
|
2020-03-27,Pearl Jam Gigaton,12
|
||||||
|
2020-03-27,Gretchen Whitmer,13
|
||||||
|
2020-03-27,Bill Ackman,14
|
||||||
|
2020-03-27,Till Lindemann,15
|
||||||
|
2020-03-27,Trish Regan,16
|
||||||
|
2020-03-27,Steven Universe Future,17
|
||||||
|
2020-03-27,Urbi et Orbi,18
|
||||||
|
2020-03-27,Nc stay-at-home order,19
|
||||||
|
2020-03-28,Dog,0
|
||||||
|
2020-03-28,Tom Coburn,1
|
||||||
|
2020-03-28,Cat,2
|
||||||
|
2020-03-28,Weather radar,3
|
||||||
|
2020-03-28,Horse,4
|
||||||
|
2020-03-28,Elephant,5
|
||||||
|
2020-03-28,Bear,6
|
||||||
|
2020-03-28,Penguin,7
|
||||||
|
2020-03-28,Joseph Lowery,8
|
||||||
|
2020-03-28,North Carolina,9
|
||||||
|
2020-03-28,Wolf,10
|
||||||
|
2020-03-28,Predator: Hunting Grounds,11
|
||||||
|
2020-03-28,Duck,12
|
||||||
|
2020-03-28,Vivarium,13
|
||||||
|
2020-03-28,Instacart strike,14
|
||||||
|
240
transliterations/data/output/related_searches_rising.csv
Normal file
240
transliterations/data/output/related_searches_rising.csv
Normal file
@@ -0,0 +1,240 @@
|
|||||||
|
query,value,term,date
|
||||||
|
coronavirus tips,102600,coronavirus,2020-03-27
|
||||||
|
covid 19,72600,coronavirus,2020-03-27
|
||||||
|
trump coronavirus,52900,coronavirus,2020-03-27
|
||||||
|
notizie coronavirus,50350,coronavirus,2020-03-27
|
||||||
|
wuhan coronavirus,48850,coronavirus,2020-03-27
|
||||||
|
ultime coronavirus,45300,coronavirus,2020-03-27
|
||||||
|
coronavirus ultime notizie,39600,coronavirus,2020-03-27
|
||||||
|
coronavirus worldometer,37350,coronavirus,2020-03-27
|
||||||
|
us coronavirus cases,36250,coronavirus,2020-03-27
|
||||||
|
italie coronavirus,34850,coronavirus,2020-03-27
|
||||||
|
coronavirus update india,25550,coronavirus,2020-03-27
|
||||||
|
coronavirus in italia,25500,coronavirus,2020-03-27
|
||||||
|
covid-19,24150,coronavirus,2020-03-27
|
||||||
|
coronavirus live map,23700,coronavirus,2020-03-27
|
||||||
|
john hopkins coronavirus,23650,coronavirus,2020-03-27
|
||||||
|
coronavirus lombardia,23400,coronavirus,2020-03-27
|
||||||
|
coronavirus meme,23050,coronavirus,2020-03-27
|
||||||
|
coronavirus live update,23050,coronavirus,2020-03-27
|
||||||
|
coronavirus update uk,20950,coronavirus,2020-03-27
|
||||||
|
decreto coronavirus,19750,coronavirus,2020-03-27
|
||||||
|
coronavirus österreich,19250,coronavirus,2020-03-27
|
||||||
|
coronavirus roma,18900,coronavirus,2020-03-27
|
||||||
|
coronavirus memes,17350,coronavirus,2020-03-27
|
||||||
|
coronavirus cases in india,16050,coronavirus,2020-03-27
|
||||||
|
coronavirus georgia,16050,coronavirus,2020-03-27
|
||||||
|
covid-19 coronavirus,1218150,covid-19,2020-03-27
|
||||||
|
coronavirus,1181150,covid-19,2020-03-27
|
||||||
|
covid,682700,covid-19,2020-03-27
|
||||||
|
covid-19 cases,605100,covid-19,2020-03-27
|
||||||
|
covid 19,473950,covid-19,2020-03-27
|
||||||
|
corona,405300,covid-19,2020-03-27
|
||||||
|
virus covid-19,398550,covid-19,2020-03-27
|
||||||
|
covid-19 map,273250,covid-19,2020-03-27
|
||||||
|
covid-19 symptoms,271350,covid-19,2020-03-27
|
||||||
|
covid-19 news,247000,covid-19,2020-03-27
|
||||||
|
covid-19 updates,238250,covid-19,2020-03-27
|
||||||
|
covid-19 update,213450,covid-19,2020-03-27
|
||||||
|
covid-19 live,203950,covid-19,2020-03-27
|
||||||
|
corona virus,201950,covid-19,2020-03-27
|
||||||
|
covid-19 us,185450,covid-19,2020-03-27
|
||||||
|
who,169900,covid-19,2020-03-27
|
||||||
|
covid-19 who,169200,covid-19,2020-03-27
|
||||||
|
covid-19 canada,167650,covid-19,2020-03-27
|
||||||
|
what is covid-19,165850,covid-19,2020-03-27
|
||||||
|
covid-19 cdc,143000,covid-19,2020-03-27
|
||||||
|
cdc,139750,covid-19,2020-03-27
|
||||||
|
covid-19 test,136250,covid-19,2020-03-27
|
||||||
|
covid-19 italy,134850,covid-19,2020-03-27
|
||||||
|
covid-19 china,128200,covid-19,2020-03-27
|
||||||
|
covid-19 usa,118050,covid-19,2020-03-27
|
||||||
|
covid,1438650,covid19,2020-03-27
|
||||||
|
covid 19,1282950,covid19,2020-03-27
|
||||||
|
coronavirus covid19,950500,covid19,2020-03-27
|
||||||
|
coronavirus,930200,covid19,2020-03-27
|
||||||
|
covid19 cases,496800,covid19,2020-03-27
|
||||||
|
corona,395600,covid19,2020-03-27
|
||||||
|
corona covid19,390150,covid19,2020-03-27
|
||||||
|
covid19 virus,368100,covid19,2020-03-27
|
||||||
|
covid19 news,253550,covid19,2020-03-27
|
||||||
|
covid19 update,223300,covid19,2020-03-27
|
||||||
|
symptoms covid19,222750,covid19,2020-03-27
|
||||||
|
covid19 symptoms,220150,covid19,2020-03-27
|
||||||
|
covid19 map,217850,covid19,2020-03-27
|
||||||
|
corona virus,206600,covid19,2020-03-27
|
||||||
|
covid19 us,178600,covid19,2020-03-27
|
||||||
|
what is covid19,173100,covid19,2020-03-27
|
||||||
|
covid19 who,159800,covid19,2020-03-27
|
||||||
|
who,156600,covid19,2020-03-27
|
||||||
|
canada covid19,155350,covid19,2020-03-27
|
||||||
|
italy covid19,154100,covid19,2020-03-27
|
||||||
|
italy,147850,covid19,2020-03-27
|
||||||
|
test covid19,146500,covid19,2020-03-27
|
||||||
|
china covid19,144300,covid19,2020-03-27
|
||||||
|
covid19 uk,130850,covid19,2020-03-27
|
||||||
|
covid-19,129800,covid19,2020-03-27
|
||||||
|
coronavirus,707750,sars-cov-2,2020-03-27
|
||||||
|
coronavirus sars-cov-2,687850,sars-cov-2,2020-03-27
|
||||||
|
covid-19,568100,sars-cov-2,2020-03-27
|
||||||
|
covid-19 sars-cov-2,538200,sars-cov-2,2020-03-27
|
||||||
|
sars,346250,sars-cov-2,2020-03-27
|
||||||
|
virus sars-cov-2,306300,sars-cov-2,2020-03-27
|
||||||
|
corona,241200,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-2 covid 19,224250,sars-cov-2,2020-03-27
|
||||||
|
covid 19,210650,sars-cov-2,2020-03-27
|
||||||
|
corona virus,121450,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-2 vs covid-19,107850,sars-cov-2,2020-03-27
|
||||||
|
what is sars-cov-2,107650,sars-cov-2,2020-03-27
|
||||||
|
sars cov 2,91850,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-2 wiki,56650,sars-cov-2,2020-03-27
|
||||||
|
koronawirus,47000,sars-cov-2,2020-03-27
|
||||||
|
cdc,44300,sars-cov-2,2020-03-27
|
||||||
|
sars-cov,44100,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-1,41000,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-2 vs cod-19,28450,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-2 genome,22300,sars-cov-2,2020-03-27
|
||||||
|
pubmed,22200,sars-cov-2,2020-03-27
|
||||||
|
коронавирус,21950,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-2 or covid-19,19150,sars-cov-2,2020-03-27
|
||||||
|
on the origin and continuing evolution of sars-cov-2,18950,sars-cov-2,2020-03-27
|
||||||
|
the proximal origin of sars-cov-2,18800,sars-cov-2,2020-03-27
|
||||||
|
coronavirus,707350,covid-19 pandemic,2020-03-27
|
||||||
|
covid-19 coronavirus pandemic,682850,covid-19 pandemic,2020-03-27
|
||||||
|
coronavirus pandemic,655700,covid-19 pandemic,2020-03-27
|
||||||
|
who,288300,covid-19 pandemic,2020-03-27
|
||||||
|
is covid-19 a pandemic,269250,covid-19 pandemic,2020-03-27
|
||||||
|
who pandemic,262250,covid-19 pandemic,2020-03-27
|
||||||
|
covid 19 pandemic,248100,covid-19 pandemic,2020-03-27
|
||||||
|
pandemic meaning,140650,covid-19 pandemic,2020-03-27
|
||||||
|
what is a pandemic,107950,covid-19 pandemic,2020-03-27
|
||||||
|
pandemic vs epidemic,98050,covid-19 pandemic,2020-03-27
|
||||||
|
cdc pandemic,97750,covid-19 pandemic,2020-03-27
|
||||||
|
pandemic definition,94750,covid-19 pandemic,2020-03-27
|
||||||
|
pandemic define,61950,covid-19 pandemic,2020-03-27
|
||||||
|
covid-19 pandemic plan,58650,covid-19 pandemic,2020-03-27
|
||||||
|
coronavirus pandemic covid-19 live world map/count,55350,covid-19 pandemic,2020-03-27
|
||||||
|
who declared covid-19 pandemic,52050,covid-19 pandemic,2020-03-27
|
||||||
|
covid-19 pandemic unemployment payment,51900,covid-19 pandemic,2020-03-27
|
||||||
|
coronavirus update,32550,covid-19 pandemic,2020-03-27
|
||||||
|
coronavirus tips,109950,coronavirus,2020-03-28
|
||||||
|
covid,97600,coronavirus,2020-03-28
|
||||||
|
coronavirus death toll,52800,coronavirus,2020-03-28
|
||||||
|
wuhan coronavirus,49100,coronavirus,2020-03-28
|
||||||
|
coronavirus argentina,40350,coronavirus,2020-03-28
|
||||||
|
coronavirus ultime notizie,39400,coronavirus,2020-03-28
|
||||||
|
coronavirus worldometer,37050,coronavirus,2020-03-28
|
||||||
|
worldometer coronavirus,36750,coronavirus,2020-03-28
|
||||||
|
us coronavirus cases,35250,coronavirus,2020-03-28
|
||||||
|
ultima hora coronavirus,30900,coronavirus,2020-03-28
|
||||||
|
coronavirus update india,26000,coronavirus,2020-03-28
|
||||||
|
coronavirus live map,24500,coronavirus,2020-03-28
|
||||||
|
coronavirus lombardia,23350,coronavirus,2020-03-28
|
||||||
|
coronavirus live update,22300,coronavirus,2020-03-28
|
||||||
|
coronavirus romania,21100,coronavirus,2020-03-28
|
||||||
|
coronavirus update uk,21050,coronavirus,2020-03-28
|
||||||
|
decreto coronavirus,20650,coronavirus,2020-03-28
|
||||||
|
coronavirus österreich,19650,coronavirus,2020-03-28
|
||||||
|
coronavirus colorado,17900,coronavirus,2020-03-28
|
||||||
|
coronavirus memes,17700,coronavirus,2020-03-28
|
||||||
|
coronavirus milano,17050,coronavirus,2020-03-28
|
||||||
|
virginia coronavirus,16950,coronavirus,2020-03-28
|
||||||
|
coronavirus tracker,16850,coronavirus,2020-03-28
|
||||||
|
coronavirus cases in india,16600,coronavirus,2020-03-28
|
||||||
|
coronavirus conseils,16300,coronavirus,2020-03-28
|
||||||
|
coronavirus,1175050,covid-19,2020-03-28
|
||||||
|
coronavirus covid-19,1169000,covid-19,2020-03-28
|
||||||
|
covid,644400,covid-19,2020-03-28
|
||||||
|
covid-19 cases,603750,covid-19,2020-03-28
|
||||||
|
covid 19,452650,covid-19,2020-03-28
|
||||||
|
corona,395750,covid-19,2020-03-28
|
||||||
|
covid-19 virus,386500,covid-19,2020-03-28
|
||||||
|
covid-19 symptoms,290450,covid-19,2020-03-28
|
||||||
|
covid-19 map,283950,covid-19,2020-03-28
|
||||||
|
covid-19 news,238050,covid-19,2020-03-28
|
||||||
|
covid-19 updates,225500,covid-19,2020-03-28
|
||||||
|
covid-19 update,212000,covid-19,2020-03-28
|
||||||
|
covid-19 live,203750,covid-19,2020-03-28
|
||||||
|
corona virus,198650,covid-19,2020-03-28
|
||||||
|
covid-19 us,186600,covid-19,2020-03-28
|
||||||
|
covid-19 who,173150,covid-19,2020-03-28
|
||||||
|
what is covid-19,170900,covid-19,2020-03-28
|
||||||
|
canada covid-19,168900,covid-19,2020-03-28
|
||||||
|
who,168150,covid-19,2020-03-28
|
||||||
|
covid-19 canada,165250,covid-19,2020-03-28
|
||||||
|
cdc covid-19,145600,covid-19,2020-03-28
|
||||||
|
cdc,140700,covid-19,2020-03-28
|
||||||
|
covid-19 test,139050,covid-19,2020-03-28
|
||||||
|
covid-19 world,132150,covid-19,2020-03-28
|
||||||
|
china covid-19,129200,covid-19,2020-03-28
|
||||||
|
covid,1482050,covid19,2020-03-28
|
||||||
|
covid 19,1260000,covid19,2020-03-28
|
||||||
|
coronavirus covid19,917000,covid19,2020-03-28
|
||||||
|
coronavirus,905050,covid19,2020-03-28
|
||||||
|
covid19 cases,514800,covid19,2020-03-28
|
||||||
|
corona,412650,covid19,2020-03-28
|
||||||
|
covid19 virus,384000,covid19,2020-03-28
|
||||||
|
covid19 news,274300,covid19,2020-03-28
|
||||||
|
symptoms covid19,231450,covid19,2020-03-28
|
||||||
|
covid19 update,229800,covid19,2020-03-28
|
||||||
|
covid19 map,225450,covid19,2020-03-28
|
||||||
|
corona virus,205550,covid19,2020-03-28
|
||||||
|
covid19 us,183000,covid19,2020-03-28
|
||||||
|
what is covid19,168150,covid19,2020-03-28
|
||||||
|
covid19 who,164550,covid19,2020-03-28
|
||||||
|
who,161750,covid19,2020-03-28
|
||||||
|
covid19 canada,153250,covid19,2020-03-28
|
||||||
|
italy covid19,150050,covid19,2020-03-28
|
||||||
|
covid19 test,145450,covid19,2020-03-28
|
||||||
|
italy,145300,covid19,2020-03-28
|
||||||
|
china covid19,143450,covid19,2020-03-28
|
||||||
|
uk covid19,133900,covid19,2020-03-28
|
||||||
|
covid-19,126550,covid19,2020-03-28
|
||||||
|
usa covid19,121450,covid19,2020-03-28
|
||||||
|
covid19 deaths,116200,covid19,2020-03-28
|
||||||
|
coronavirus sars-cov-2,705200,sars-cov-2,2020-03-28
|
||||||
|
coronavirus,691350,sars-cov-2,2020-03-28
|
||||||
|
sars-cov-2 covid-19,549050,sars-cov-2,2020-03-28
|
||||||
|
covid-19,482800,sars-cov-2,2020-03-28
|
||||||
|
sars,326400,sars-cov-2,2020-03-28
|
||||||
|
virus sars-cov-2,305300,sars-cov-2,2020-03-28
|
||||||
|
corona,261700,sars-cov-2,2020-03-28
|
||||||
|
covid 19,250950,sars-cov-2,2020-03-28
|
||||||
|
sars-cov-2 covid 19,245900,sars-cov-2,2020-03-28
|
||||||
|
who,118700,sars-cov-2,2020-03-28
|
||||||
|
corona virus,105000,sars-cov-2,2020-03-28
|
||||||
|
covid19,92650,sars-cov-2,2020-03-28
|
||||||
|
sars-cov-2 vs covid-19,92200,sars-cov-2,2020-03-28
|
||||||
|
what is sars-cov-2,90550,sars-cov-2,2020-03-28
|
||||||
|
sars cov 2,75800,sars-cov-2,2020-03-28
|
||||||
|
sars-cov-2 wiki,62400,sars-cov-2,2020-03-28
|
||||||
|
koronawirus,50900,sars-cov-2,2020-03-28
|
||||||
|
sars-cov,50500,sars-cov-2,2020-03-28
|
||||||
|
mers,50300,sars-cov-2,2020-03-28
|
||||||
|
sars-cov-2 symptoms,47500,sars-cov-2,2020-03-28
|
||||||
|
pubmed,25200,sars-cov-2,2020-03-28
|
||||||
|
sars-cov-2 vs cod-19,25150,sars-cov-2,2020-03-28
|
||||||
|
on the origin and continuing evolution of sars-cov-2,22300,sars-cov-2,2020-03-28
|
||||||
|
the proximal origin of sars-cov-2,22250,sars-cov-2,2020-03-28
|
||||||
|
sars2,19050,sars-cov-2,2020-03-28
|
||||||
|
coronavirus pandemic,665900,covid-19 pandemic,2020-03-28
|
||||||
|
coronavirus,648150,covid-19 pandemic,2020-03-28
|
||||||
|
covid-19 coronavirus pandemic,621900,covid-19 pandemic,2020-03-28
|
||||||
|
is covid-19 a pandemic,339100,covid-19 pandemic,2020-03-28
|
||||||
|
who pandemic,284050,covid-19 pandemic,2020-03-28
|
||||||
|
who,269600,covid-19 pandemic,2020-03-28
|
||||||
|
covid 19,221350,covid-19 pandemic,2020-03-28
|
||||||
|
covid 19 pandemic,221150,covid-19 pandemic,2020-03-28
|
||||||
|
epidemic,168100,covid-19 pandemic,2020-03-28
|
||||||
|
pandemic meaning,142000,covid-19 pandemic,2020-03-28
|
||||||
|
cdc,115650,covid-19 pandemic,2020-03-28
|
||||||
|
what is a pandemic,102200,covid-19 pandemic,2020-03-28
|
||||||
|
pandemic definition,82550,covid-19 pandemic,2020-03-28
|
||||||
|
covid-19 symptoms,75350,covid-19 pandemic,2020-03-28
|
||||||
|
coronavirus pandemic covid-19 live world map/count,52600,covid-19 pandemic,2020-03-28
|
||||||
|
covid-19 updates,49400,covid-19 pandemic,2020-03-28
|
||||||
|
covid-19 pandemic unemployment payment,39300,covid-19 pandemic,2020-03-28
|
||||||
|
covid-19 pandemic unemployment,36150,covid-19 pandemic,2020-03-28
|
||||||
|
pandemic vs endemic,29600,covid-19 pandemic,2020-03-28
|
||||||
|
who declared covid-19 pandemic,29550,covid-19 pandemic,2020-03-28
|
||||||
|
when was the last pandemic,19550,covid-19 pandemic,2020-03-28
|
||||||
|
240
transliterations/data/output/related_searches_top.csv
Normal file
240
transliterations/data/output/related_searches_top.csv
Normal file
@@ -0,0 +1,240 @@
|
|||||||
|
query,value,term,date
|
||||||
|
coronavirus update,100,coronavirus,2020-03-27
|
||||||
|
corona,94,coronavirus,2020-03-27
|
||||||
|
coronavirus symptoms,82,coronavirus,2020-03-27
|
||||||
|
news coronavirus,74,coronavirus,2020-03-27
|
||||||
|
coronavirus cases,69,coronavirus,2020-03-27
|
||||||
|
uk coronavirus,53,coronavirus,2020-03-27
|
||||||
|
corona virus,49,coronavirus,2020-03-27
|
||||||
|
el coronavirus,43,coronavirus,2020-03-27
|
||||||
|
coronavirus china,41,coronavirus,2020-03-27
|
||||||
|
coronavirus italia,41,coronavirus,2020-03-27
|
||||||
|
coronavirus map,40,coronavirus,2020-03-27
|
||||||
|
india coronavirus,38,coronavirus,2020-03-27
|
||||||
|
coronavirus france,36,coronavirus,2020-03-27
|
||||||
|
coronavirus sintomas,31,coronavirus,2020-03-27
|
||||||
|
coronavirus italy,29,coronavirus,2020-03-27
|
||||||
|
italy,29,coronavirus,2020-03-27
|
||||||
|
us coronavirus,28,coronavirus,2020-03-27
|
||||||
|
usa coronavirus,28,coronavirus,2020-03-27
|
||||||
|
coronavirus españa,27,coronavirus,2020-03-27
|
||||||
|
symptoms of coronavirus,26,coronavirus,2020-03-27
|
||||||
|
coronavirus live,25,coronavirus,2020-03-27
|
||||||
|
coronavirus tips,21,coronavirus,2020-03-27
|
||||||
|
what is coronavirus,21,coronavirus,2020-03-27
|
||||||
|
coronavirus in india,20,coronavirus,2020-03-27
|
||||||
|
coronavirus latest,19,coronavirus,2020-03-27
|
||||||
|
covid-19 coronavirus,100,covid-19,2020-03-27
|
||||||
|
coronavirus,97,covid-19,2020-03-27
|
||||||
|
covid,56,covid-19,2020-03-27
|
||||||
|
covid-19 cases,50,covid-19,2020-03-27
|
||||||
|
covid 19,39,covid-19,2020-03-27
|
||||||
|
corona,33,covid-19,2020-03-27
|
||||||
|
virus covid-19,33,covid-19,2020-03-27
|
||||||
|
covid-19 map,22,covid-19,2020-03-27
|
||||||
|
covid-19 symptoms,22,covid-19,2020-03-27
|
||||||
|
covid-19 news,20,covid-19,2020-03-27
|
||||||
|
covid-19 updates,20,covid-19,2020-03-27
|
||||||
|
covid-19 update,18,covid-19,2020-03-27
|
||||||
|
covid-19 live,17,covid-19,2020-03-27
|
||||||
|
corona virus,17,covid-19,2020-03-27
|
||||||
|
covid-19 us,15,covid-19,2020-03-27
|
||||||
|
who,14,covid-19,2020-03-27
|
||||||
|
covid-19 who,14,covid-19,2020-03-27
|
||||||
|
covid-19 canada,14,covid-19,2020-03-27
|
||||||
|
what is covid-19,14,covid-19,2020-03-27
|
||||||
|
covid-19 cdc,12,covid-19,2020-03-27
|
||||||
|
cdc,11,covid-19,2020-03-27
|
||||||
|
covid-19 test,11,covid-19,2020-03-27
|
||||||
|
covid-19 italy,11,covid-19,2020-03-27
|
||||||
|
covid-19 china,11,covid-19,2020-03-27
|
||||||
|
covid-19 usa,10,covid-19,2020-03-27
|
||||||
|
covid,100,covid19,2020-03-27
|
||||||
|
covid 19,89,covid19,2020-03-27
|
||||||
|
coronavirus covid19,66,covid19,2020-03-27
|
||||||
|
coronavirus,65,covid19,2020-03-27
|
||||||
|
covid19 cases,35,covid19,2020-03-27
|
||||||
|
corona,28,covid19,2020-03-27
|
||||||
|
corona covid19,27,covid19,2020-03-27
|
||||||
|
covid19 virus,26,covid19,2020-03-27
|
||||||
|
covid19 news,18,covid19,2020-03-27
|
||||||
|
covid19 update,16,covid19,2020-03-27
|
||||||
|
symptoms covid19,15,covid19,2020-03-27
|
||||||
|
covid19 symptoms,15,covid19,2020-03-27
|
||||||
|
covid19 map,15,covid19,2020-03-27
|
||||||
|
corona virus,14,covid19,2020-03-27
|
||||||
|
covid19 us,12,covid19,2020-03-27
|
||||||
|
what is covid19,12,covid19,2020-03-27
|
||||||
|
covid19 who,11,covid19,2020-03-27
|
||||||
|
who,11,covid19,2020-03-27
|
||||||
|
canada covid19,11,covid19,2020-03-27
|
||||||
|
italy covid19,11,covid19,2020-03-27
|
||||||
|
italy,10,covid19,2020-03-27
|
||||||
|
test covid19,10,covid19,2020-03-27
|
||||||
|
china covid19,10,covid19,2020-03-27
|
||||||
|
covid19 uk,9,covid19,2020-03-27
|
||||||
|
covid-19,9,covid19,2020-03-27
|
||||||
|
coronavirus,100,sars-cov-2,2020-03-27
|
||||||
|
coronavirus sars-cov-2,97,sars-cov-2,2020-03-27
|
||||||
|
covid-19,80,sars-cov-2,2020-03-27
|
||||||
|
covid-19 sars-cov-2,76,sars-cov-2,2020-03-27
|
||||||
|
sars,49,sars-cov-2,2020-03-27
|
||||||
|
virus sars-cov-2,43,sars-cov-2,2020-03-27
|
||||||
|
corona,34,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-2 covid 19,32,sars-cov-2,2020-03-27
|
||||||
|
covid 19,30,sars-cov-2,2020-03-27
|
||||||
|
corona virus,17,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-2 vs covid-19,15,sars-cov-2,2020-03-27
|
||||||
|
what is sars-cov-2,15,sars-cov-2,2020-03-27
|
||||||
|
sars cov 2,13,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-2 wiki,8,sars-cov-2,2020-03-27
|
||||||
|
koronawirus,7,sars-cov-2,2020-03-27
|
||||||
|
cdc,6,sars-cov-2,2020-03-27
|
||||||
|
sars-cov,6,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-1,6,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-2 vs cod-19,4,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-2 genome,3,sars-cov-2,2020-03-27
|
||||||
|
pubmed,3,sars-cov-2,2020-03-27
|
||||||
|
коронавирус,3,sars-cov-2,2020-03-27
|
||||||
|
sars-cov-2 or covid-19,3,sars-cov-2,2020-03-27
|
||||||
|
on the origin and continuing evolution of sars-cov-2,3,sars-cov-2,2020-03-27
|
||||||
|
the proximal origin of sars-cov-2,3,sars-cov-2,2020-03-27
|
||||||
|
coronavirus,100,covid-19 pandemic,2020-03-27
|
||||||
|
covid-19 coronavirus pandemic,97,covid-19 pandemic,2020-03-27
|
||||||
|
coronavirus pandemic,93,covid-19 pandemic,2020-03-27
|
||||||
|
who,41,covid-19 pandemic,2020-03-27
|
||||||
|
is covid-19 a pandemic,38,covid-19 pandemic,2020-03-27
|
||||||
|
who pandemic,37,covid-19 pandemic,2020-03-27
|
||||||
|
covid 19 pandemic,35,covid-19 pandemic,2020-03-27
|
||||||
|
pandemic meaning,20,covid-19 pandemic,2020-03-27
|
||||||
|
what is a pandemic,15,covid-19 pandemic,2020-03-27
|
||||||
|
pandemic vs epidemic,14,covid-19 pandemic,2020-03-27
|
||||||
|
cdc pandemic,14,covid-19 pandemic,2020-03-27
|
||||||
|
pandemic definition,13,covid-19 pandemic,2020-03-27
|
||||||
|
pandemic define,9,covid-19 pandemic,2020-03-27
|
||||||
|
covid-19 pandemic plan,8,covid-19 pandemic,2020-03-27
|
||||||
|
coronavirus pandemic covid-19 live world map/count,8,covid-19 pandemic,2020-03-27
|
||||||
|
who declared covid-19 pandemic,7,covid-19 pandemic,2020-03-27
|
||||||
|
covid-19 pandemic unemployment payment,7,covid-19 pandemic,2020-03-27
|
||||||
|
coronavirus update,5,covid-19 pandemic,2020-03-27
|
||||||
|
coronavirus update,100,coronavirus,2020-03-28
|
||||||
|
corona,97,coronavirus,2020-03-28
|
||||||
|
coronavirus symptoms,84,coronavirus,2020-03-28
|
||||||
|
news coronavirus,73,coronavirus,2020-03-28
|
||||||
|
coronavirus cases,70,coronavirus,2020-03-28
|
||||||
|
coronavirus uk,53,coronavirus,2020-03-28
|
||||||
|
corona virus,50,coronavirus,2020-03-28
|
||||||
|
coronavirus map,43,coronavirus,2020-03-28
|
||||||
|
china coronavirus,43,coronavirus,2020-03-28
|
||||||
|
el coronavirus,43,coronavirus,2020-03-28
|
||||||
|
coronavirus italia,40,coronavirus,2020-03-28
|
||||||
|
india coronavirus,39,coronavirus,2020-03-28
|
||||||
|
coronavirus france,38,coronavirus,2020-03-28
|
||||||
|
coronavirus italy,31,coronavirus,2020-03-28
|
||||||
|
sintomas coronavirus,31,coronavirus,2020-03-28
|
||||||
|
coronavirus sintomas,31,coronavirus,2020-03-28
|
||||||
|
coronavirus usa,30,coronavirus,2020-03-28
|
||||||
|
us coronavirus,29,coronavirus,2020-03-28
|
||||||
|
coronavirus españa,27,coronavirus,2020-03-28
|
||||||
|
symptoms of coronavirus,26,coronavirus,2020-03-28
|
||||||
|
coronavirus live,25,coronavirus,2020-03-28
|
||||||
|
coronavirus tips,23,coronavirus,2020-03-28
|
||||||
|
coronavirus in india,21,coronavirus,2020-03-28
|
||||||
|
casos coronavirus,21,coronavirus,2020-03-28
|
||||||
|
covid,21,coronavirus,2020-03-28
|
||||||
|
coronavirus,100,covid-19,2020-03-28
|
||||||
|
coronavirus covid-19,99,covid-19,2020-03-28
|
||||||
|
covid,55,covid-19,2020-03-28
|
||||||
|
covid-19 cases,51,covid-19,2020-03-28
|
||||||
|
covid 19,39,covid-19,2020-03-28
|
||||||
|
corona,34,covid-19,2020-03-28
|
||||||
|
covid-19 virus,33,covid-19,2020-03-28
|
||||||
|
covid-19 symptoms,25,covid-19,2020-03-28
|
||||||
|
covid-19 map,24,covid-19,2020-03-28
|
||||||
|
covid-19 news,20,covid-19,2020-03-28
|
||||||
|
covid-19 updates,19,covid-19,2020-03-28
|
||||||
|
covid-19 update,18,covid-19,2020-03-28
|
||||||
|
covid-19 live,17,covid-19,2020-03-28
|
||||||
|
corona virus,17,covid-19,2020-03-28
|
||||||
|
covid-19 us,16,covid-19,2020-03-28
|
||||||
|
covid-19 who,15,covid-19,2020-03-28
|
||||||
|
what is covid-19,15,covid-19,2020-03-28
|
||||||
|
canada covid-19,14,covid-19,2020-03-28
|
||||||
|
who,14,covid-19,2020-03-28
|
||||||
|
covid-19 canada,14,covid-19,2020-03-28
|
||||||
|
cdc covid-19,12,covid-19,2020-03-28
|
||||||
|
cdc,12,covid-19,2020-03-28
|
||||||
|
covid-19 test,12,covid-19,2020-03-28
|
||||||
|
covid-19 world,11,covid-19,2020-03-28
|
||||||
|
china covid-19,11,covid-19,2020-03-28
|
||||||
|
covid,100,covid19,2020-03-28
|
||||||
|
covid 19,85,covid19,2020-03-28
|
||||||
|
coronavirus covid19,62,covid19,2020-03-28
|
||||||
|
coronavirus,61,covid19,2020-03-28
|
||||||
|
covid19 cases,35,covid19,2020-03-28
|
||||||
|
corona,28,covid19,2020-03-28
|
||||||
|
covid19 virus,26,covid19,2020-03-28
|
||||||
|
covid19 news,19,covid19,2020-03-28
|
||||||
|
symptoms covid19,16,covid19,2020-03-28
|
||||||
|
covid19 update,16,covid19,2020-03-28
|
||||||
|
covid19 map,15,covid19,2020-03-28
|
||||||
|
corona virus,14,covid19,2020-03-28
|
||||||
|
covid19 us,12,covid19,2020-03-28
|
||||||
|
what is covid19,11,covid19,2020-03-28
|
||||||
|
covid19 who,11,covid19,2020-03-28
|
||||||
|
who,11,covid19,2020-03-28
|
||||||
|
covid19 canada,10,covid19,2020-03-28
|
||||||
|
italy covid19,10,covid19,2020-03-28
|
||||||
|
covid19 test,10,covid19,2020-03-28
|
||||||
|
italy,10,covid19,2020-03-28
|
||||||
|
china covid19,10,covid19,2020-03-28
|
||||||
|
uk covid19,9,covid19,2020-03-28
|
||||||
|
covid-19,9,covid19,2020-03-28
|
||||||
|
usa covid19,8,covid19,2020-03-28
|
||||||
|
covid19 deaths,8,covid19,2020-03-28
|
||||||
|
coronavirus sars-cov-2,100,sars-cov-2,2020-03-28
|
||||||
|
coronavirus,98,sars-cov-2,2020-03-28
|
||||||
|
sars-cov-2 covid-19,78,sars-cov-2,2020-03-28
|
||||||
|
covid-19,68,sars-cov-2,2020-03-28
|
||||||
|
sars,46,sars-cov-2,2020-03-28
|
||||||
|
virus sars-cov-2,43,sars-cov-2,2020-03-28
|
||||||
|
corona,37,sars-cov-2,2020-03-28
|
||||||
|
covid 19,36,sars-cov-2,2020-03-28
|
||||||
|
sars-cov-2 covid 19,35,sars-cov-2,2020-03-28
|
||||||
|
who,17,sars-cov-2,2020-03-28
|
||||||
|
corona virus,15,sars-cov-2,2020-03-28
|
||||||
|
covid19,13,sars-cov-2,2020-03-28
|
||||||
|
sars-cov-2 vs covid-19,13,sars-cov-2,2020-03-28
|
||||||
|
what is sars-cov-2,13,sars-cov-2,2020-03-28
|
||||||
|
sars cov 2,11,sars-cov-2,2020-03-28
|
||||||
|
sars-cov-2 wiki,9,sars-cov-2,2020-03-28
|
||||||
|
koronawirus,7,sars-cov-2,2020-03-28
|
||||||
|
sars-cov,7,sars-cov-2,2020-03-28
|
||||||
|
mers,7,sars-cov-2,2020-03-28
|
||||||
|
sars-cov-2 symptoms,7,sars-cov-2,2020-03-28
|
||||||
|
pubmed,4,sars-cov-2,2020-03-28
|
||||||
|
sars-cov-2 vs cod-19,4,sars-cov-2,2020-03-28
|
||||||
|
on the origin and continuing evolution of sars-cov-2,3,sars-cov-2,2020-03-28
|
||||||
|
the proximal origin of sars-cov-2,3,sars-cov-2,2020-03-28
|
||||||
|
sars2,3,sars-cov-2,2020-03-28
|
||||||
|
coronavirus pandemic,100,covid-19 pandemic,2020-03-28
|
||||||
|
coronavirus,97,covid-19 pandemic,2020-03-28
|
||||||
|
covid-19 coronavirus pandemic,93,covid-19 pandemic,2020-03-28
|
||||||
|
is covid-19 a pandemic,51,covid-19 pandemic,2020-03-28
|
||||||
|
who pandemic,43,covid-19 pandemic,2020-03-28
|
||||||
|
who,40,covid-19 pandemic,2020-03-28
|
||||||
|
covid 19,33,covid-19 pandemic,2020-03-28
|
||||||
|
covid 19 pandemic,33,covid-19 pandemic,2020-03-28
|
||||||
|
epidemic,25,covid-19 pandemic,2020-03-28
|
||||||
|
pandemic meaning,21,covid-19 pandemic,2020-03-28
|
||||||
|
cdc,17,covid-19 pandemic,2020-03-28
|
||||||
|
what is a pandemic,15,covid-19 pandemic,2020-03-28
|
||||||
|
pandemic definition,12,covid-19 pandemic,2020-03-28
|
||||||
|
covid-19 symptoms,11,covid-19 pandemic,2020-03-28
|
||||||
|
coronavirus pandemic covid-19 live world map/count,8,covid-19 pandemic,2020-03-28
|
||||||
|
covid-19 updates,7,covid-19 pandemic,2020-03-28
|
||||||
|
covid-19 pandemic unemployment payment,6,covid-19 pandemic,2020-03-28
|
||||||
|
covid-19 pandemic unemployment,5,covid-19 pandemic,2020-03-28
|
||||||
|
pandemic vs endemic,4,covid-19 pandemic,2020-03-28
|
||||||
|
who declared covid-19 pandemic,4,covid-19 pandemic,2020-03-28
|
||||||
|
when was the last pandemic,3,covid-19 pandemic,2020-03-28
|
||||||
|
2528
transliterations/data/output/wikidata_search_results.csv
Normal file
2528
transliterations/data/output/wikidata_search_results.csv
Normal file
File diff suppressed because it is too large
Load Diff
79671
transliterations/data/output/wikidata_search_results_from_gtrends.csv
Normal file
79671
transliterations/data/output/wikidata_search_results_from_gtrends.csv
Normal file
File diff suppressed because it is too large
Load Diff
2
transliterations/requirements.txt
Normal file
2
transliterations/requirements.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
pytrends>=4.7.2
|
||||||
|
mwapi>=0.5.1
|
||||||
2
transliterations/src/__init__.py
Normal file
2
transliterations/src/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
from wikidata_api_calls import *
|
||||||
|
from find_entities import *
|
||||||
76
transliterations/src/collect_trends.py
Normal file
76
transliterations/src/collect_trends.py
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
# this follows a similar approach to nick's trends.js but in python
|
||||||
|
from pytrends.request import TrendReq
|
||||||
|
from datetime import datetime
|
||||||
|
from os import path
|
||||||
|
import csv
|
||||||
|
from itertools import islice, chain, zip_longest
|
||||||
|
import pandas as pd
|
||||||
|
|
||||||
|
|
||||||
|
# from itertools recipes
|
||||||
|
#https://docs.python.org/3.6/library/itertools.html#itertools-recipes
|
||||||
|
def grouper(iterable, n, fillvalue=None):
|
||||||
|
"Collect data into fixed-length chunks or blocks"
|
||||||
|
# grouper('ABCDEFG', 3, 'x') --> ABC DEF Gxx"
|
||||||
|
args = [iter(iterable)] * n
|
||||||
|
return zip_longest(*args, fillvalue=fillvalue)
|
||||||
|
|
||||||
|
def get_daily_trends():
|
||||||
|
trendReq = TrendReq(backoff_factor=0.2)
|
||||||
|
today_trending = trendReq.today_searches()
|
||||||
|
daily_trends_outfile = path.join("..","data","output","daily_google_trends.csv")
|
||||||
|
|
||||||
|
write_header = False
|
||||||
|
header = ['date','term','top']
|
||||||
|
|
||||||
|
if not path.exists(daily_trends_outfile):
|
||||||
|
write_header = True
|
||||||
|
|
||||||
|
with open("../data/output/daily_google_trends.csv",'a',newline='') as of:
|
||||||
|
writer = csv.writer(of)
|
||||||
|
if write_header:
|
||||||
|
writer.writerow(header)
|
||||||
|
|
||||||
|
for i, trend in enumerate(today_trending):
|
||||||
|
writer.writerow([str(datetime.now().date()),trend,i])
|
||||||
|
|
||||||
|
def get_related_queries(stems):
|
||||||
|
# we have to batch these in sets of 5
|
||||||
|
trendReq = TrendReq(backoff_factor=0.2)
|
||||||
|
def _get_related_queries(chunk):
|
||||||
|
kw_list = list(filter(lambda x: x is not None, chunk))
|
||||||
|
trendReq.build_payload(kw_list=kw_list)
|
||||||
|
related_queries = trendReq.related_queries()
|
||||||
|
for term, results in related_queries.items():
|
||||||
|
for key, df in results.items():
|
||||||
|
if df is not None:
|
||||||
|
df["term"] = term
|
||||||
|
yield (key,df)
|
||||||
|
|
||||||
|
l = chain(*map(_get_related_queries, grouper(stems,5)))
|
||||||
|
out = {}
|
||||||
|
for key, value in l:
|
||||||
|
if key in out:
|
||||||
|
out[key].append(value)
|
||||||
|
else:
|
||||||
|
out[key] = [value]
|
||||||
|
|
||||||
|
for k in out.keys():
|
||||||
|
df = pd.concat(out[k])
|
||||||
|
df['date'] = str(datetime.now().date())
|
||||||
|
out[k] = df
|
||||||
|
outfile = path.join('..','data','output',f"related_searches_{k}.csv")
|
||||||
|
if path.exists(outfile):
|
||||||
|
mode = 'a'
|
||||||
|
header = False
|
||||||
|
else:
|
||||||
|
mode = 'w'
|
||||||
|
header = True
|
||||||
|
|
||||||
|
df.to_csv(outfile, mode=mode, header=header,index=False)
|
||||||
|
|
||||||
|
stems = [t.strip() for t in open("../data/input/base_terms.txt",'r')]
|
||||||
|
|
||||||
|
get_daily_trends()
|
||||||
|
|
||||||
|
get_related_queries(stems)
|
||||||
16
transliterations/src/compile_transliterated_phrases.sh
Executable file
16
transliterations/src/compile_transliterated_phrases.sh
Executable file
@@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# For now these scripts don't accept command line arguments. It's an MVP
|
||||||
|
|
||||||
|
echo "Reading Google trends"
|
||||||
|
python3 collect_trends.py
|
||||||
|
|
||||||
|
echo "Searching for Wikidata entities using base_terms.txt"
|
||||||
|
python3 wikidata_search.py ../data/input/base_terms.txt --output ../data/output/wikidata_search_results.csv
|
||||||
|
|
||||||
|
echo "Searching for Wikidata entities using Google trends"
|
||||||
|
python3 wikidata_search.py ../data/output/related_searches_rising.csv ../data/output/related_searches_top.csv --use-gtrends --output ../data/output/wikidata_search_results_from_gtrends.csv
|
||||||
|
|
||||||
|
echo "Finding transliterations from Wikidata using sparql"
|
||||||
|
python3 wikidata_transliterations.py ../data/output/wikidata_search_results_from_gtrends.csv ../data/output/wikidata_search_results.csv --topN 10 20 --output ../data/output/$(date '+%Y-%m-%d')_wikidata_entity_labels.csv
|
||||||
|
|
||||||
1
transliterations/src/defaults.py
Normal file
1
transliterations/src/defaults.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
user_agent = "COVID-19 Digital Observatory, a Community Data Science Collective project. (https://github.com/CommunityDataScienceCollective/COVID-19_Digital_Observatory)"
|
||||||
35
transliterations/src/wikidata_api_calls.py
Normal file
35
transliterations/src/wikidata_api_calls.py
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
# File defines functions for making api calls to find translations and transliterations for key terms.
|
||||||
|
import mwapi
|
||||||
|
import requests
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
from defaults import user_agent
|
||||||
|
|
||||||
|
def get_wikidata_api():
|
||||||
|
session = mwapi.Session(host="https://wikidata.org/w/api.php", user_agent=user_agent)
|
||||||
|
return session
|
||||||
|
|
||||||
|
def search_wikidata(session, term, *args, **kwargs):
|
||||||
|
search_results = session.get(action='query',
|
||||||
|
list='search',
|
||||||
|
srsearch=term,
|
||||||
|
# srqiprofile='popular_inclinks_pv',
|
||||||
|
srlimit='max',
|
||||||
|
srnamespace=0,
|
||||||
|
*args,
|
||||||
|
**kwargs)
|
||||||
|
|
||||||
|
|
||||||
|
query = search_results.get('query', None)
|
||||||
|
results = query.get('search', None)
|
||||||
|
|
||||||
|
if results is None:
|
||||||
|
raise mwapi.session.APIError(f"No results for query: {term}")
|
||||||
|
|
||||||
|
return results
|
||||||
|
|
||||||
|
def run_sparql_query(q):
|
||||||
|
results = requests.get("https://query.wikidata.org/bigdata/namespace/wdq/sparql",params={"format":"json","query":q})
|
||||||
|
time.sleep(2)
|
||||||
|
return results
|
||||||
|
|
||||||
95
transliterations/src/wikidata_search.py
Normal file
95
transliterations/src/wikidata_search.py
Normal file
@@ -0,0 +1,95 @@
|
|||||||
|
# generate a list of wikidata entities related to keywords
|
||||||
|
from os import path
|
||||||
|
from sys import stdout
|
||||||
|
from wikidata_api_calls import search_wikidata, get_wikidata_api
|
||||||
|
import csv
|
||||||
|
from itertools import chain
|
||||||
|
|
||||||
|
class Wikidata_ResultSet:
|
||||||
|
def __init__(self):
|
||||||
|
self.results = []
|
||||||
|
|
||||||
|
def extend(self, term, results):
|
||||||
|
self.results.append(
|
||||||
|
(Wikidata_Result(term, result, i)
|
||||||
|
for i, result in enumerate(results))
|
||||||
|
)
|
||||||
|
|
||||||
|
def to_csv(self, outfile=None, mode='w'):
|
||||||
|
if outfile is None:
|
||||||
|
of = stdout
|
||||||
|
|
||||||
|
else:
|
||||||
|
if path.exists(outfile) and mode != 'w':
|
||||||
|
of = open(outfile,'a',newline='')
|
||||||
|
else:
|
||||||
|
of = open(outfile,'w',newline='')
|
||||||
|
writer = csv.writer(of)
|
||||||
|
writer.writerow(Wikidata_Result.__slots__)
|
||||||
|
writer.writerows(map(Wikidata_Result.to_list, chain(* self.results)))
|
||||||
|
|
||||||
|
|
||||||
|
class Wikidata_Result:
|
||||||
|
# store unique entities found in the search results, the position in the search result, and the date
|
||||||
|
__slots__=['search_term','entityid','pageid','search_position','timestamp']
|
||||||
|
|
||||||
|
def __init__(self,
|
||||||
|
term,
|
||||||
|
search_result,
|
||||||
|
position):
|
||||||
|
|
||||||
|
self.search_term = term.strip()
|
||||||
|
self.entityid = search_result['title']
|
||||||
|
self.pageid = int(search_result['pageid'])
|
||||||
|
self.search_position = int(position)
|
||||||
|
self.timestamp = search_result['timestamp']
|
||||||
|
|
||||||
|
def to_list(self):
|
||||||
|
return [self.search_term,
|
||||||
|
self.entityid,
|
||||||
|
self.pageid,
|
||||||
|
self.search_position,
|
||||||
|
self.timestamp]
|
||||||
|
|
||||||
|
def run_wikidata_searches(terms):
|
||||||
|
api = get_wikidata_api()
|
||||||
|
resultset = Wikidata_ResultSet()
|
||||||
|
for term in terms:
|
||||||
|
search_results = search_wikidata(api, term)
|
||||||
|
resultset.extend(term, search_results)
|
||||||
|
return resultset
|
||||||
|
|
||||||
|
def read_google_trends_files(terms_files):
|
||||||
|
def _read_file(infile):
|
||||||
|
return csv.DictReader(open(infile,'r',newline=''))
|
||||||
|
|
||||||
|
for row in chain(* [_read_file(terms_file) for terms_file in terms_files]):
|
||||||
|
yield row['query']
|
||||||
|
|
||||||
|
|
||||||
|
def trawl_google_trends(terms_files, outfile = None, mode='w'):
|
||||||
|
terms = list(read_google_trends_files(terms_files))
|
||||||
|
resultset = run_wikidata_searches(terms)
|
||||||
|
resultset.to_csv(outfile, mode)
|
||||||
|
|
||||||
|
def trawl_base_terms(infiles, outfile = None, mode='w'):
|
||||||
|
terms = list(chain(* (open(infile,'r') for infile in infiles)))
|
||||||
|
resultset = run_wikidata_searches(terms)
|
||||||
|
resultset.to_csv(outfile, mode)
|
||||||
|
|
||||||
|
## search each of the base terms in wikidata
|
||||||
|
|
||||||
|
# store unique entities found in the search results, the position in the search result, and the date
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
import argparse
|
||||||
|
parser = argparse.ArgumentParser("Search wikidata for entities related to a set of terms.")
|
||||||
|
parser.add_argument('inputs', type=str, nargs='+', help='one or more files to read')
|
||||||
|
parser.add_argument('--use-gtrends', action='store_true', help = 'toggle whether the input is the output from google trends')
|
||||||
|
parser.add_argument('--output', type=str, help='an output file. defaults to stdout')
|
||||||
|
parser.add_argument('--overwrite', action='store_true', help = 'overwrite existing output files instead of appending')
|
||||||
|
args = parser.parse_args()
|
||||||
|
if args.use_gtrends:
|
||||||
|
trawl_google_trends(args.inputs, args.output)
|
||||||
|
else:
|
||||||
|
trawl_base_terms(args.inputs, args.output)
|
||||||
96
transliterations/src/wikidata_transliterations.py
Normal file
96
transliterations/src/wikidata_transliterations.py
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
from wikidata_api_calls import run_sparql_query
|
||||||
|
from itertools import chain, islice
|
||||||
|
import csv
|
||||||
|
from json import JSONDecodeError
|
||||||
|
|
||||||
|
class LabelData:
|
||||||
|
__slots__ = ['entityid','label','langcode','is_alt']
|
||||||
|
|
||||||
|
def __init__(self, wd_res, is_alt):
|
||||||
|
obj = wd_res.get('label',None)
|
||||||
|
self.label = obj.get('value',None)
|
||||||
|
self.langcode = obj.get('xml:lang',None)
|
||||||
|
self.entityid = wd_res.get('entity',None).get('value',None)
|
||||||
|
self.is_alt = is_alt
|
||||||
|
|
||||||
|
def to_list(self):
|
||||||
|
return [self.entityid,
|
||||||
|
self.label,
|
||||||
|
self.langcode,
|
||||||
|
self.is_alt]
|
||||||
|
|
||||||
|
def GetAllLabels(in_csvs, outfile, topNs):
|
||||||
|
|
||||||
|
def load_entity_ids(in_csv, topN=5):
|
||||||
|
with open(in_csv,'r',newline='') as infile:
|
||||||
|
reader = list(csv.DictReader(infile))
|
||||||
|
for row in reader:
|
||||||
|
if int(row['search_position']) < topN:
|
||||||
|
yield row["entityid"]
|
||||||
|
|
||||||
|
ids = set(chain(* map(lambda in_csv, topN: load_entity_ids(in_csv, topN), in_csvs, topNs)))
|
||||||
|
|
||||||
|
labeldata = GetEntityLabels(ids)
|
||||||
|
|
||||||
|
with open(outfile, 'w', newline='') as of:
|
||||||
|
writer = csv.writer(of)
|
||||||
|
writer.writerow(LabelData.__slots__)
|
||||||
|
writer.writerows(map(LabelData.to_list,labeldata))
|
||||||
|
|
||||||
|
|
||||||
|
def GetEntityLabels(entityids):
|
||||||
|
|
||||||
|
def run_query_and_parse(query, is_alt):
|
||||||
|
results = run_sparql_query(query)
|
||||||
|
try:
|
||||||
|
jobj = results.json()
|
||||||
|
|
||||||
|
res = jobj.get('results',None)
|
||||||
|
if res is not None:
|
||||||
|
res = res.get('bindings',None)
|
||||||
|
if res is None:
|
||||||
|
raise requests.APIError(f"got invalid response from wikidata for {query % entityid}")
|
||||||
|
|
||||||
|
for info in res:
|
||||||
|
yield LabelData(info, is_alt)
|
||||||
|
|
||||||
|
except JSONDecodeError as e:
|
||||||
|
print(e)
|
||||||
|
print(query)
|
||||||
|
|
||||||
|
def prep_query(query, prop, entityids):
|
||||||
|
values = ' '.join(('wd:{0}'.format(id) for id in entityids))
|
||||||
|
return query.format(prop, values)
|
||||||
|
|
||||||
|
base_query = """
|
||||||
|
SELECT DISTINCT ?entity ?label WHERE {{
|
||||||
|
?entity {0} ?label;
|
||||||
|
VALUES ?entity {{ {1} }}
|
||||||
|
}}"""
|
||||||
|
|
||||||
|
# we can't get all the entities at once. how about 100 at a time?
|
||||||
|
chunksize = 100
|
||||||
|
entityids = (id for id in entityids)
|
||||||
|
chunk = list(islice(entityids, chunksize))
|
||||||
|
calls = []
|
||||||
|
while len(chunk) > 0:
|
||||||
|
label_query = prep_query(base_query, "rdfs:label", chunk)
|
||||||
|
altLabel_query = prep_query(base_query, "skos:altLabel", chunk)
|
||||||
|
label_results = run_query_and_parse(label_query, is_alt=False)
|
||||||
|
altLabel_results = run_query_and_parse(altLabel_query, is_alt=True)
|
||||||
|
calls.extend([label_results, altLabel_results])
|
||||||
|
chunk = list(islice(entityids, chunksize))
|
||||||
|
|
||||||
|
return chain(*calls)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
import argparse
|
||||||
|
parser = argparse.ArgumentParser("Use wikidata to find transliterations of terms")
|
||||||
|
parser.add_argument('inputs', type=str, nargs='+', help='one or more files to read. the inputs are generated by wikidata_search.py')
|
||||||
|
parser.add_argument('--topN', type=int, nargs='+', help='limit number of wikidata search results to use, can pass one arg for each source.')
|
||||||
|
parser.add_argument('--output', type=str, help='an output file. defaults to stdout',default=20)
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
GetAllLabels(args.inputs, args.output, topNs=args.topN)
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,858 +0,0 @@
|
|||||||
access agent article granularity project timestamp views
|
|
||||||
all-access all-agents 2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 1148284
|
|
||||||
all-access all-agents Coronavirus_disease_2019 daily en.wikipedia 2020032600 292272
|
|
||||||
all-access all-agents Severe_acute_respiratory_syndrome_coronavirus_2 daily en.wikipedia 2020032600 76785
|
|
||||||
all-access all-agents Misinformation_related_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 26004
|
|
||||||
all-access all-agents Social_distancing daily en.wikipedia 2020032600 20480
|
|
||||||
all-access all-agents Transmission_(medicine) daily en.wikipedia 2020032600 4232
|
|
||||||
all-access all-agents Contact_tracing daily en.wikipedia 2020032600 1496
|
|
||||||
all-access all-agents 2019–20_coronavirus_pandemic_by_country_and_territory daily en.wikipedia 2020032600 298603
|
|
||||||
all-access all-agents Timeline_of_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 23011
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Asia daily en.wikipedia 2020032600 12921
|
|
||||||
all-access all-agents 2020_stock_market_crash daily en.wikipedia 2020032600 11179
|
|
||||||
all-access all-agents Acute_respiratory_distress_syndrome daily en.wikipedia 2020032600 7729
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_cinema daily en.wikipedia 2020032600 7637
|
|
||||||
all-access all-agents World_Health_Organization daily en.wikipedia 2020032600 47129
|
|
||||||
all-access all-agents 2019–20_coronavirus_pandemic_in_mainland_China daily en.wikipedia 2020032600 51344
|
|
||||||
all-access all-agents 2020_Hubei_lockdowns daily en.wikipedia 2020032600 16470
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Europe daily en.wikipedia 2020032600 41800
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Iran daily en.wikipedia 2020032600 26916
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Italy daily en.wikipedia 2020032600 297687
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_North_America daily en.wikipedia 2020032600 8528
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Oceania daily en.wikipedia 2020032600 3195
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_South_America daily en.wikipedia 2020032600 4458
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_South_Korea daily en.wikipedia 2020032600 28623
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_United_Kingdom daily en.wikipedia 2020032600 111856
|
|
||||||
all-access all-agents COVID-19_drug_development daily en.wikipedia 2020032600 5909
|
|
||||||
all-access all-agents COVID-19_testing daily en.wikipedia 2020032600 52907
|
|
||||||
all-access all-agents COVID-19_vaccine daily en.wikipedia 2020032600 19644
|
|
||||||
all-access all-agents Chloroquine daily en.wikipedia 2020032600 40958
|
|
||||||
all-access all-agents Coronavirus daily en.wikipedia 2020032600 397959
|
|
||||||
all-access all-agents Grand_Princess daily en.wikipedia 2020032600 1860
|
|
||||||
all-access all-agents Huanan_Seafood_Wholesale_Market daily en.wikipedia 2020032600 23413
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_politics daily en.wikipedia 2020032600 1662
|
|
||||||
all-access all-agents National_responses_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 3936
|
|
||||||
all-access all-agents Tedros_Adhanom daily en.wikipedia 2020032600 36307
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Africa daily en.wikipedia 2020032600 17394
|
|
||||||
all-access all-agents Remdesivir daily en.wikipedia 2020032600 28887
|
|
||||||
all-access all-agents Angiotensin-converting_enzyme_2 daily en.wikipedia 2020032600 12059
|
|
||||||
all-access all-agents Case_chronology_of_the_2019–20_coronavirus_pandemic_in_March_2020 daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents List_of_deaths_from_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 9936
|
|
||||||
all-access all-agents List_of_events_affected_by_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 3746
|
|
||||||
all-access all-agents Timeline_of_the_2019–20_coronavirus_pandemic_in_February_2020 daily en.wikipedia 2020032600 9543
|
|
||||||
all-access all-agents Timeline_of_the_2019–20_coronavirus_pandemic_in_March_2020 daily en.wikipedia 2020032600 18731
|
|
||||||
all-access all-agents Timeline_of_the_2019–20_coronavirus_pandemic_in_November_2019_–_January_2020 daily en.wikipedia 2020032600 15929
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Canada daily en.wikipedia 2020032600 75601
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Denmark daily en.wikipedia 2020032600 15541
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_United_States daily en.wikipedia 2020032600 337676
|
|
||||||
all-access all-agents 2019–20_coronavirus_pandemic_in_Hubei daily en.wikipedia 2020032600 3229
|
|
||||||
all-access all-agents 2019–20_coronavirus_pandemic_in_Shanghai daily en.wikipedia 2020032600 332
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Australia daily en.wikipedia 2020032600 86969
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Azerbaijan daily en.wikipedia 2020032600 2998
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Belgium daily en.wikipedia 2020032600 27107
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Bosnia_and_Herzegovina daily en.wikipedia 2020032600 4817
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Bulgaria daily en.wikipedia 2020032600 13634
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_California daily en.wikipedia 2020032600 24400
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Croatia daily en.wikipedia 2020032600 10989
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Egypt daily en.wikipedia 2020032600 7633
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Finland daily en.wikipedia 2020032600 12485
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_France daily en.wikipedia 2020032600 55204
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Germany daily en.wikipedia 2020032600 87011
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Greece daily en.wikipedia 2020032600 17960
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Hungary daily en.wikipedia 2020032600 8967
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Illinois daily en.wikipedia 2020032600 8431
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Israel daily en.wikipedia 2020032600 22605
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Japan daily en.wikipedia 2020032600 20701
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Latvia daily en.wikipedia 2020032600 4453
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Malta daily en.wikipedia 2020032600 8668
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_New_York_(state) daily en.wikipedia 2020032600 50886
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Norway daily en.wikipedia 2020032600 11113
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Poland daily en.wikipedia 2020032600 49729
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Portugal daily en.wikipedia 2020032600 23549
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Romania daily en.wikipedia 2020032600 33684
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Russia daily en.wikipedia 2020032600 32015
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Slovakia daily en.wikipedia 2020032600 8645
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Spain daily en.wikipedia 2020032600 114732
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Sweden daily en.wikipedia 2020032600 42353
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Switzerland daily en.wikipedia 2020032600 29282
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Taiwan daily en.wikipedia 2020032600 8219
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Turkey daily en.wikipedia 2020032600 99213
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Venezuela daily en.wikipedia 2020032600 2713
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Washington_(state) daily en.wikipedia 2020032600 24179
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Czech_Republic daily en.wikipedia 2020032600 28588
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Netherlands daily en.wikipedia 2020032600 42641
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Philippines daily en.wikipedia 2020032600 73748
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Republic_of_Ireland daily en.wikipedia 2020032600 27559
|
|
||||||
all-access all-agents Centers_for_Disease_Control_and_Prevention daily en.wikipedia 2020032600 13921
|
|
||||||
all-access all-agents Concerns_and_controversies_at_the_2020_Summer_Olympics daily en.wikipedia 2020032600 371
|
|
||||||
all-access all-agents Coronavirus_party daily en.wikipedia 2020032600 140
|
|
||||||
all-access all-agents Criticism_of_response_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 2196
|
|
||||||
all-access all-agents Extracorporeal_membrane_oxygenation daily en.wikipedia 2020032600 6477
|
|
||||||
all-access all-agents Families_First_Coronavirus_Response_Act daily en.wikipedia 2020032600 3573
|
|
||||||
all-access all-agents Financial_impact_of_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 951
|
|
||||||
all-access all-agents Hydroxychloroquine daily en.wikipedia 2020032600 48053
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_prisons daily en.wikipedia 2020032600 818
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_television daily en.wikipedia 2020032600 3708
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_the_2020_Summer_Olympics daily en.wikipedia 2020032600 1630
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_the_video_game_industry daily en.wikipedia 2020032600 1180
|
|
||||||
all-access all-agents Li_Wenliang daily en.wikipedia 2020032600 30339
|
|
||||||
all-access all-agents National_Health_Commission daily en.wikipedia 2020032600 783
|
|
||||||
all-access all-agents Severe_acute_respiratory_syndrome daily en.wikipedia 2020032600 50334
|
|
||||||
all-access all-agents Socio-economic_impact_of_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 12044
|
|
||||||
all-access all-agents U.S._state_and_local_government_response_to_the_2020_coronavirus_pandemic daily en.wikipedia 2020032600 12958
|
|
||||||
all-access all-agents Wuhan_Institute_of_Virology daily en.wikipedia 2020032600 30164
|
|
||||||
all-access all-agents 2019–20_coronavirus_pandemic_in_Henan daily en.wikipedia 2020032600 193
|
|
||||||
all-access all-agents 2019–20_coronavirus_pandemic_in_Sichuan daily en.wikipedia 2020032600 168
|
|
||||||
all-access all-agents 2020_India_coronavirus_lockdown daily en.wikipedia 2020032600 9829
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Albania daily en.wikipedia 2020032600 4376
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Andorra daily en.wikipedia 2020032600 1467
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Austria daily en.wikipedia 2020032600 20664
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Belarus daily en.wikipedia 2020032600 4509
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Estonia daily en.wikipedia 2020032600 5329
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Iceland daily en.wikipedia 2020032600 11564
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Kazakhstan daily en.wikipedia 2020032600 2745
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Kosovo daily en.wikipedia 2020032600 6837
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Liechtenstein daily en.wikipedia 2020032600 1439
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Lithuania daily en.wikipedia 2020032600 10180
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Luxembourg daily en.wikipedia 2020032600 5606
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Manitoba daily en.wikipedia 2020032600 432
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Moldova daily en.wikipedia 2020032600 2967
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Monaco daily en.wikipedia 2020032600 1300
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_North_Korea daily en.wikipedia 2020032600 22575
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_North_Macedonia daily en.wikipedia 2020032600 4507
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_North_Rhine-Westphalia daily en.wikipedia 2020032600 714
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_San_Marino daily en.wikipedia 2020032600 4290
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Slovenia daily en.wikipedia 2020032600 5986
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Togo daily en.wikipedia 2020032600 1329
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Uganda daily en.wikipedia 2020032600 716
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Ukraine daily en.wikipedia 2020032600 11876
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Vatican_City daily en.wikipedia 2020032600 2727
|
|
||||||
all-access all-agents Case_fatality_rate daily en.wikipedia 2020032600 5996
|
|
||||||
all-access all-agents Coronaviridae daily en.wikipedia 2020032600 12035
|
|
||||||
all-access all-agents Coronavirus_Aid,_Relief,_and_Economic_Security_Act daily en.wikipedia 2020032600 8346
|
|
||||||
all-access all-agents Coronavirus_recession daily en.wikipedia 2020032600 923
|
|
||||||
all-access all-agents Darvinson_Rojas daily en.wikipedia 2020032600 8
|
|
||||||
all-access all-agents Diamond_Princess_(ship) daily en.wikipedia 2020032600 18047
|
|
||||||
all-access all-agents Media_coverage_of_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 85
|
|
||||||
all-access all-agents Zhong_Nanshan daily en.wikipedia 2020032600 67489
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Belize daily en.wikipedia 2020032600 725
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_French_Polynesia daily en.wikipedia 2020032600 714
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Mozambique daily en.wikipedia 2020032600 540
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Transnistria daily en.wikipedia 2020032600 548
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Zambia daily en.wikipedia 2020032600 517
|
|
||||||
all-access all-agents Chen_Wei_(medical_scientist) daily en.wikipedia 2020032600 297
|
|
||||||
all-access all-agents Disease_cluster daily en.wikipedia 2020032600 488
|
|
||||||
all-access all-agents Panic_buying daily en.wikipedia 2020032600 3521
|
|
||||||
all-access all-agents River_of_Grace_Community_Church daily en.wikipedia 2020032600 69
|
|
||||||
all-access all-agents COVID-19_related_curfews_and_lockdowns daily en.wikipedia 2020032600 6191
|
|
||||||
all-access all-agents Evacuations_related_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 752
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_science_and_technology daily en.wikipedia 2020032600 402
|
|
||||||
all-access all-agents List_of_SARS_outbreaks daily en.wikipedia 2020032600 1034
|
|
||||||
all-access all-agents List_of_incidents_of_xenophobia_and_racism_related_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 8800
|
|
||||||
all-access all-agents Novel_coronavirus daily en.wikipedia 2020032600 4814
|
|
||||||
all-access all-agents 2020_Italy_coronavirus_lockdown daily en.wikipedia 2020032600 34176
|
|
||||||
all-access all-agents 2020_Malaysia_movement_control_order daily en.wikipedia 2020032600 8444
|
|
||||||
all-access all-agents 2020_Russia–Saudi_Arabia_oil_price_war daily en.wikipedia 2020032600 5071
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Guernsey daily en.wikipedia 2020032600 1376
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_India daily en.wikipedia 2020032600 513901
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_on_cruise_ships daily en.wikipedia 2020032600 9897
|
|
||||||
all-access all-agents Anthony_Fauci daily en.wikipedia 2020032600 103205
|
|
||||||
all-access all-agents Charles,_Prince_of_Wales daily en.wikipedia 2020032600 89902
|
|
||||||
all-access all-agents Coalition_for_Epidemic_Preparedness_Innovations daily en.wikipedia 2020032600 1270
|
|
||||||
all-access all-agents Eurovision_Song_Contest_2020 daily en.wikipedia 2020032600 7669
|
|
||||||
all-access all-agents Ken_Cuccinelli daily en.wikipedia 2020032600 511
|
|
||||||
all-access all-agents Larry_Kudlow daily en.wikipedia 2020032600 3616
|
|
||||||
all-access all-agents Mike_Pence daily en.wikipedia 2020032600 21067
|
|
||||||
all-access all-agents Olga_Kurylenko daily en.wikipedia 2020032600 5613
|
|
||||||
all-access all-agents Robert_C._O'Brien_(attorney) daily en.wikipedia 2020032600 451
|
|
||||||
all-access all-agents Terrence_McNally daily en.wikipedia 2020032600 16988
|
|
||||||
all-access all-agents Timeline_of_the_2020_coronavirus_pandemic_in_India daily en.wikipedia 2020032600 21701
|
|
||||||
all-access all-agents Tom_Hanks daily en.wikipedia 2020032600 25276
|
|
||||||
all-access all-agents 2020_Luzon_enhanced_community_quarantine daily en.wikipedia 2020032600 25708
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Afghanistan daily en.wikipedia 2020032600 4723
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Alberta daily en.wikipedia 2020032600 3772
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Argentina daily en.wikipedia 2020032600 10555
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Arkansas daily en.wikipedia 2020032600 4215
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Balkans daily en.wikipedia 2020032600 113
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Brazil daily en.wikipedia 2020032600 24449
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Cambodia daily en.wikipedia 2020032600 3095
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Chile daily en.wikipedia 2020032600 5834
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Colorado daily en.wikipedia 2020032600 3925
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Costa_Rica daily en.wikipedia 2020032600 3554
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Florida daily en.wikipedia 2020032600 5044
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Georgia_(U.S._state) daily en.wikipedia 2020032600 6012
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Hong_Kong daily en.wikipedia 2020032600 6073
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Indonesia daily en.wikipedia 2020032600 18271
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Iraq daily en.wikipedia 2020032600 3395
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Karnataka daily en.wikipedia 2020032600 49937
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Kerala daily en.wikipedia 2020032600 19340
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Louisiana daily en.wikipedia 2020032600 7425
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Malaysia daily en.wikipedia 2020032600 26146
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Maryland daily en.wikipedia 2020032600 4922
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Massachusetts daily en.wikipedia 2020032600 8363
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Metro_Manila daily en.wikipedia 2020032600 1688
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Michigan daily en.wikipedia 2020032600 6974
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Minnesota daily en.wikipedia 2020032600 3120
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Morocco daily en.wikipedia 2020032600 25586
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Nepal daily en.wikipedia 2020032600 17229
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_New_Jersey daily en.wikipedia 2020032600 7129
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_New_Zealand daily en.wikipedia 2020032600 23220
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Northern_Ireland daily en.wikipedia 2020032600 2528
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Ohio daily en.wikipedia 2020032600 8548
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Ontario daily en.wikipedia 2020032600 9124
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Oregon daily en.wikipedia 2020032600 2749
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Pakistan daily en.wikipedia 2020032600 98452
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Portland,_Oregon daily en.wikipedia 2020032600 400
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Puerto_Rico daily en.wikipedia 2020032600 4196
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Quebec daily en.wikipedia 2020032600 8373
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Singapore daily en.wikipedia 2020032600 9932
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_South_Africa daily en.wikipedia 2020032600 72704
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_South_Carolina daily en.wikipedia 2020032600 5865
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Sri_Lanka daily en.wikipedia 2020032600 16104
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Thailand daily en.wikipedia 2020032600 12413
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Uruguay daily en.wikipedia 2020032600 2259
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Vermont daily en.wikipedia 2020032600 416
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Vietnam daily en.wikipedia 2020032600 10539
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Virginia daily en.wikipedia 2020032600 6390
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Washington,_D.C. daily en.wikipedia 2020032600 1939
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Wisconsin daily en.wikipedia 2020032600 1717
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Faroe_Islands daily en.wikipedia 2020032600 1483
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_United_Arab_Emirates daily en.wikipedia 2020032600 31865
|
|
||||||
all-access all-agents Alex_Azar daily en.wikipedia 2020032600 3656
|
|
||||||
all-access all-agents Augustin_de_Romanet_de_Beaune daily en.wikipedia 2020032600 12
|
|
||||||
all-access all-agents Ben_Carson daily en.wikipedia 2020032600 5865
|
|
||||||
all-access all-agents COVID-19_drug_repurposing_research daily en.wikipedia 2020032600 2355
|
|
||||||
all-access all-agents Carmen_Deseda daily en.wikipedia 2020032600 1823
|
|
||||||
all-access all-agents Christian_Drosten daily en.wikipedia 2020032600 2714
|
|
||||||
all-access all-agents Coronavirus_Preparedness_and_Response_Supplemental_Appropriations_Act,_2020 daily en.wikipedia 2020032600 1168
|
|
||||||
all-access all-agents Deborah_Birx daily en.wikipedia 2020032600 56535
|
|
||||||
all-access all-agents Disease_X daily en.wikipedia 2020032600 2555
|
|
||||||
all-access all-agents Flybe daily en.wikipedia 2020032600 812
|
|
||||||
all-access all-agents Gerónimo_Lluberas daily en.wikipedia 2020032600 61
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_aviation daily en.wikipedia 2020032600 909
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_education daily en.wikipedia 2020032600 4442
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_religion daily en.wikipedia 2020032600 1796
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_sports daily en.wikipedia 2020032600 2965
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_the_food_industry daily en.wikipedia 2020032600 215
|
|
||||||
all-access all-agents Impact_of_the_2019–20_coronavirus_pandemic_on_the_restaurant_industry_in_the_United_States daily en.wikipedia 2020032600 521
|
|
||||||
all-access all-agents Kanika_Kapoor daily en.wikipedia 2020032600 30855
|
|
||||||
all-access all-agents Life_Care_Centers_of_America daily en.wikipedia 2020032600 490
|
|
||||||
all-access all-agents Liu_Fan_(nurse) daily en.wikipedia 2020032600 178
|
|
||||||
all-access all-agents MS_Westerdam daily en.wikipedia 2020032600 388
|
|
||||||
all-access all-agents Matthew_Pottinger daily en.wikipedia 2020032600 240
|
|
||||||
all-access all-agents Neil_Ferguson_(epidemiologist) daily en.wikipedia 2020032600 5021
|
|
||||||
all-access all-agents Robert_R._Redfield daily en.wikipedia 2020032600 5371
|
|
||||||
all-access all-agents Robert_Wilkie daily en.wikipedia 2020032600 948
|
|
||||||
all-access all-agents Sophie_Grégoire_Trudeau daily en.wikipedia 2020032600 4618
|
|
||||||
all-access all-agents Steven_Mnuchin daily en.wikipedia 2020032600 32304
|
|
||||||
all-access all-agents Suspension_of_the_2019–20_NBA_season daily en.wikipedia 2020032600 1036
|
|
||||||
all-access all-agents Timeline_of_the_2020_coronavirus_pandemic_in_the_United_States daily en.wikipedia 2020032600 29143
|
|
||||||
all-access all-agents Travel_restrictions_related_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 8016
|
|
||||||
all-access all-agents USNS_Mercy_(T-AH-19) daily en.wikipedia 2020032600 8910
|
|
||||||
all-access all-agents White_House_Coronavirus_Task_Force daily en.wikipedia 2020032600 12092
|
|
||||||
all-access all-agents World_Dream daily en.wikipedia 2020032600 391
|
|
||||||
all-access all-agents WrestleMania_36 daily en.wikipedia 2020032600 63618
|
|
||||||
all-access all-agents 2019–20_coronavirus_pandemic_related_shortages daily en.wikipedia 2020032600 1375
|
|
||||||
all-access all-agents 2020_Tour_Championship daily en.wikipedia 2020032600 112
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Alabama daily en.wikipedia 2020032600 2169
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Alaska daily en.wikipedia 2020032600 1169
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Algeria daily en.wikipedia 2020032600 5213
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Arizona daily en.wikipedia 2020032600 1518
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Armenia daily en.wikipedia 2020032600 2050
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Aruba daily en.wikipedia 2020032600 2407
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Bahrain daily en.wikipedia 2020032600 4866
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Bangladesh daily en.wikipedia 2020032600 21043
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Bolivia daily en.wikipedia 2020032600 1538
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_British_Columbia daily en.wikipedia 2020032600 3847
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Brunei daily en.wikipedia 2020032600 2095
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Burkina_Faso daily en.wikipedia 2020032600 1803
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Cameroon daily en.wikipedia 2020032600 1196
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Canary_Islands daily en.wikipedia 2020032600 160
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Cape_Verde daily en.wikipedia 2020032600 1137
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Chad daily en.wikipedia 2020032600 405
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Colombia daily en.wikipedia 2020032600 6645
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Connecticut daily en.wikipedia 2020032600 1151
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Cuba daily en.wikipedia 2020032600 5118
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Cyprus daily en.wikipedia 2020032600 4200
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Delaware daily en.wikipedia 2020032600 948
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Ecuador daily en.wikipedia 2020032600 4555
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Eswatini daily en.wikipedia 2020032600 995
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Ethiopia daily en.wikipedia 2020032600 5446
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Fiji daily en.wikipedia 2020032600 757
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Ghana daily en.wikipedia 2020032600 20239
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Guatemala daily en.wikipedia 2020032600 2360
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Hawaii daily en.wikipedia 2020032600 782
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Honduras daily en.wikipedia 2020032600 2126
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Idaho daily en.wikipedia 2020032600 713
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Indiana daily en.wikipedia 2020032600 1539
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Ivory_Coast daily en.wikipedia 2020032600 2383
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Jamaica daily en.wikipedia 2020032600 9963
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Jersey daily en.wikipedia 2020032600 953
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Jordan daily en.wikipedia 2020032600 3659
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Kansas daily en.wikipedia 2020032600 2445
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Kentucky daily en.wikipedia 2020032600 1708
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Kenya daily en.wikipedia 2020032600 9561
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Kuwait daily en.wikipedia 2020032600 2183
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Kyrgyzstan daily en.wikipedia 2020032600 883
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Lebanon daily en.wikipedia 2020032600 3196
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_London daily en.wikipedia 2020032600 1152
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Macau daily en.wikipedia 2020032600 895
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Maharashtra daily en.wikipedia 2020032600 39350
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Maine daily en.wikipedia 2020032600 637
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Mauritius daily en.wikipedia 2020032600 5165
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Mexico daily en.wikipedia 2020032600 32880
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Mississippi daily en.wikipedia 2020032600 640
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Missouri daily en.wikipedia 2020032600 1450
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Montana daily en.wikipedia 2020032600 508
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Montenegro daily en.wikipedia 2020032600 2166
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Namibia daily en.wikipedia 2020032600 1888
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Nevada daily en.wikipedia 2020032600 908
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_New_Brunswick daily en.wikipedia 2020032600 1732
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_New_Mexico daily en.wikipedia 2020032600 802
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Nicaragua daily en.wikipedia 2020032600 1268
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_North_Carolina daily en.wikipedia 2020032600 2130
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_North_Dakota daily en.wikipedia 2020032600 306
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Northern_Cyprus daily en.wikipedia 2020032600 2342
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Oklahoma daily en.wikipedia 2020032600 1693
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Oman daily en.wikipedia 2020032600 7561
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Osijek daily en.wikipedia 2020032600 25
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Paraguay daily en.wikipedia 2020032600 1444
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Pennsylvania daily en.wikipedia 2020032600 4416
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Peru daily en.wikipedia 2020032600 5569
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Punjab,_India daily en.wikipedia 2020032600 22759
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Qatar daily en.wikipedia 2020032600 5508
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Sabah daily en.wikipedia 2020032600 902
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Sarawak daily en.wikipedia 2020032600 2013
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Saskatchewan daily en.wikipedia 2020032600 650
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Saudi_Arabia daily en.wikipedia 2020032600 15211
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Scotland daily en.wikipedia 2020032600 2308
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Senegal daily en.wikipedia 2020032600 1450
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Somalia daily en.wikipedia 2020032600 2072
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_South_Asia daily en.wikipedia 2020032600 697
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Syria daily en.wikipedia 2020032600 1069
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Tennessee daily en.wikipedia 2020032600 1912
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Texas daily en.wikipedia 2020032600 4012
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Trinidad_and_Tobago daily en.wikipedia 2020032600 3909
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Utah daily en.wikipedia 2020032600 1408
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Varaždin daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_West_Virginia daily en.wikipedia 2020032600 1543
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Wyoming daily en.wikipedia 2020032600 534
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Zagreb daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Zimbabwe daily en.wikipedia 2020032600 789
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Dominican_Republic daily en.wikipedia 2020032600 6418
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Maldives daily en.wikipedia 2020032600 2470
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_New_York_metropolitan_area daily en.wikipedia 2020032600 1565
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_State_of_Palestine daily en.wikipedia 2020032600 1987
|
|
||||||
all-access all-agents Ai_Fen daily en.wikipedia 2020032600 731
|
|
||||||
all-access all-agents Brett_Dean daily en.wikipedia 2020032600 45
|
|
||||||
all-access all-agents COVID-19_in_pregnancy daily en.wikipedia 2020032600 303
|
|
||||||
all-access all-agents Chen_Qiushi daily en.wikipedia 2020032600 1607
|
|
||||||
all-access all-agents Chris_Liddell daily en.wikipedia 2020032600 147
|
|
||||||
all-access all-agents Collapse_of_Xinjia_Express_Hotel daily en.wikipedia 2020032600 180
|
|
||||||
all-access all-agents Corona_Rintawan daily en.wikipedia 2020032600 184
|
|
||||||
all-access all-agents Coronavirus_Act_2020 daily en.wikipedia 2020032600 2999
|
|
||||||
all-access all-agents Derek_Kan daily en.wikipedia 2020032600 192
|
|
||||||
all-access all-agents Economic_impact_of_the_2019–20_coronavirus_pandemic_in_India daily en.wikipedia 2020032600 1783
|
|
||||||
all-access all-agents Edward_C._Allworth_Veterans'_Home daily en.wikipedia 2020032600 9
|
|
||||||
all-access all-agents European_Centre_for_Disease_Prevention_and_Control daily en.wikipedia 2020032600 564
|
|
||||||
all-access all-agents Favipiravir daily en.wikipedia 2020032600 19663
|
|
||||||
all-access all-agents Giuliana_De_Sio daily en.wikipedia 2020032600 59
|
|
||||||
all-access all-agents Hashem_Bathaie_Golpayegani daily en.wikipedia 2020032600 442
|
|
||||||
all-access all-agents Health_(Preservation_and_Protection_and_other_Emergency_Measures_in_the_Public_Interest)_Act_2020 daily en.wikipedia 2020032600 27
|
|
||||||
all-access all-agents Henk_Bekedam daily en.wikipedia 2020032600 7
|
|
||||||
all-access all-agents Human_rights_issues_during_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 245
|
|
||||||
all-access all-agents Huoshenshan_Hospital daily en.wikipedia 2020032600 1354
|
|
||||||
all-access all-agents Index_case daily en.wikipedia 2020032600 10743
|
|
||||||
all-access all-agents Indian_local_government_response_to_the_2020_coronavirus_pandemic daily en.wikipedia 2020032600 3135
|
|
||||||
all-access all-agents Janata_Curfew daily en.wikipedia 2020032600 5204
|
|
||||||
all-access all-agents Jealous_Coronavirus daily en.wikipedia 2020032600 196
|
|
||||||
all-access all-agents Jean_Leber daily en.wikipedia 2020032600 297
|
|
||||||
all-access all-agents Jerome_Adams daily en.wikipedia 2020032600 32067
|
|
||||||
all-access all-agents Joel_Szabat daily en.wikipedia 2020032600 95
|
|
||||||
all-access all-agents Johannes_B._Kerner daily en.wikipedia 2020032600 14
|
|
||||||
all-access all-agents Kelvin_Droegemeier daily en.wikipedia 2020032600 189
|
|
||||||
all-access all-agents Leishenshan_Hospital daily en.wikipedia 2020032600 399
|
|
||||||
all-access all-agents List_of_Philippine_public_figures_who_underwent_COVID-19_testing daily en.wikipedia 2020032600 3696
|
|
||||||
all-access all-agents Liu_Shouxiang daily en.wikipedia 2020032600 125
|
|
||||||
all-access all-agents Liu_Wen_(doctor) daily en.wikipedia 2020032600 175
|
|
||||||
all-access all-agents Lucia_Bosè daily en.wikipedia 2020032600 3571
|
|
||||||
all-access all-agents Lumpinee_Boxing_Stadium daily en.wikipedia 2020032600 199
|
|
||||||
all-access all-agents MS_Braemar daily en.wikipedia 2020032600 887
|
|
||||||
all-access all-agents Mirga_Gražinytė-Tyla daily en.wikipedia 2020032600 46
|
|
||||||
all-access all-agents Movie_Night_in_Canada daily en.wikipedia 2020032600 57
|
|
||||||
all-access all-agents NHS_Nightingale_Hospital daily en.wikipedia 2020032600 3483
|
|
||||||
all-access all-agents National_COVID-19_Coordination_Commission daily en.wikipedia 2020032600 7
|
|
||||||
all-access all-agents Operation_Rescript daily en.wikipedia 2020032600 515
|
|
||||||
all-access all-agents PREDICT_(USAID) daily en.wikipedia 2020032600 46
|
|
||||||
all-access all-agents Patrick_Vallance daily en.wikipedia 2020032600 2213
|
|
||||||
all-access all-agents Paul_Goma daily en.wikipedia 2020032600 5900
|
|
||||||
all-access all-agents Pete_Gaynor daily en.wikipedia 2020032600 599
|
|
||||||
all-access all-agents Piero_Schlesinger daily en.wikipedia 2020032600 207
|
|
||||||
all-access all-agents Qiu_Jun_(bodybuilder) daily en.wikipedia 2020032600 316
|
|
||||||
all-access all-agents Richard_Wilkins_(TV_presenter) daily en.wikipedia 2020032600 533
|
|
||||||
all-access all-agents Rita_Wilson daily en.wikipedia 2020032600 11052
|
|
||||||
all-access all-agents Ruby_Princess daily en.wikipedia 2020032600 1580
|
|
||||||
all-access all-agents Seema_Verma daily en.wikipedia 2020032600 1965
|
|
||||||
all-access all-agents Shi_Zhengli daily en.wikipedia 2020032600 3282
|
|
||||||
all-access all-agents Siméon_Sawadogo daily en.wikipedia 2020032600 32
|
|
||||||
all-access all-agents Spring_Education_Group daily en.wikipedia 2020032600 22
|
|
||||||
all-access all-agents Stanislas_Ouaro daily en.wikipedia 2020032600 38
|
|
||||||
all-access all-agents Stay-at-home_order daily en.wikipedia 2020032600 10058
|
|
||||||
all-access all-agents Stephen_Biegun daily en.wikipedia 2020032600 226
|
|
||||||
all-access all-agents Stephen_Hahn_(oncologist) daily en.wikipedia 2020032600 667
|
|
||||||
all-access all-agents Timeline_of_the_2020_coronavirus_pandemic_in_Bosnia_and_Herzegovina daily en.wikipedia 2020032600 123
|
|
||||||
all-access all-agents Xie_Linka daily en.wikipedia 2020032600 246
|
|
||||||
all-access all-agents 2019–20_coronavirus_pandemic_on_social_media daily en.wikipedia 2020032600 516
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Akrotiri_and_Dhekelia daily en.wikipedia 2020032600 535
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Angola daily en.wikipedia 2020032600 914
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Antigua_and_Barbuda daily en.wikipedia 2020032600 1064
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Barbados daily en.wikipedia 2020032600 2511
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Benin daily en.wikipedia 2020032600 523
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Bermuda daily en.wikipedia 2020032600 1097
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Bhutan daily en.wikipedia 2020032600 2244
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Curaçao daily en.wikipedia 2020032600 835
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Djibouti daily en.wikipedia 2020032600 524
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Dominica daily en.wikipedia 2020032600 360
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_East_Timor daily en.wikipedia 2020032600 645
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_El_Salvador daily en.wikipedia 2020032600 1809
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Equatorial_Guinea daily en.wikipedia 2020032600 442
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Eritrea daily en.wikipedia 2020032600 909
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_French_Guiana daily en.wikipedia 2020032600 647
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Gabon daily en.wikipedia 2020032600 632
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Georgia_(country) daily en.wikipedia 2020032600 2943
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Gibraltar daily en.wikipedia 2020032600 756
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Greenland daily en.wikipedia 2020032600 4788
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Grenada daily en.wikipedia 2020032600 403
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Guadeloupe daily en.wikipedia 2020032600 793
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Guam daily en.wikipedia 2020032600 1294
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Guinea daily en.wikipedia 2020032600 731
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Guinea-Bissau daily en.wikipedia 2020032600 1441
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Guyana daily en.wikipedia 2020032600 801
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Haiti daily en.wikipedia 2020032600 1062
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Iowa daily en.wikipedia 2020032600 802
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Laos daily en.wikipedia 2020032600 840
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Liberia daily en.wikipedia 2020032600 1100
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Libya daily en.wikipedia 2020032600 838
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Madagascar daily en.wikipedia 2020032600 630
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Mali daily en.wikipedia 2020032600 598
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Martinique daily en.wikipedia 2020032600 438
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Mauritania daily en.wikipedia 2020032600 492
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Mayotte daily en.wikipedia 2020032600 296
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Mongolia daily en.wikipedia 2020032600 2160
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Montserrat daily en.wikipedia 2020032600 722
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Nebraska daily en.wikipedia 2020032600 381
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_New_Caledonia daily en.wikipedia 2020032600 525
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_New_Hampshire daily en.wikipedia 2020032600 561
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Niger daily en.wikipedia 2020032600 538
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Nigeria daily en.wikipedia 2020032600 28662
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Nova_Scotia daily en.wikipedia 2020032600 412
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Panama daily en.wikipedia 2020032600 2152
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Papua_New_Guinea daily en.wikipedia 2020032600 1211
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Rhode_Island daily en.wikipedia 2020032600 303
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Rwanda daily en.wikipedia 2020032600 797
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Réunion daily en.wikipedia 2020032600 848
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Saint_Barthélemy daily en.wikipedia 2020032600 361
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Saint_Kitts_and_Nevis daily en.wikipedia 2020032600 1606
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Saint_Lucia daily en.wikipedia 2020032600 1082
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Saint_Vincent_and_the_Grenadines daily en.wikipedia 2020032600 1460
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Seychelles daily en.wikipedia 2020032600 942
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Sint_Maarten daily en.wikipedia 2020032600 212
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_South_Dakota daily en.wikipedia 2020032600 342
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Sudan daily en.wikipedia 2020032600 1158
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Suriname daily en.wikipedia 2020032600 698
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Tanzania daily en.wikipedia 2020032600 1602
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Tunisia daily en.wikipedia 2020032600 2931
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Uttar_Pradesh daily en.wikipedia 2020032600 8579
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Uzbekistan daily en.wikipedia 2020032600 1220
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_West_Bengal daily en.wikipedia 2020032600 834
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Bahamas daily en.wikipedia 2020032600 3354
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_British_Virgin_Islands daily en.wikipedia 2020032600 451
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Canary_Islands daily en.wikipedia 2020032600 395
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Cayman_Islands daily en.wikipedia 2020032600 1390
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Central_African_Republic daily en.wikipedia 2020032600 458
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Collectivity_of_Saint_Martin daily en.wikipedia 2020032600 840
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Democratic_Republic_of_the_Congo daily en.wikipedia 2020032600 1670
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Gambia daily en.wikipedia 2020032600 1123
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Isle_of_Man daily en.wikipedia 2020032600 1013
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Northwest_Territories daily en.wikipedia 2020032600 218
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Republic_of_the_Congo daily en.wikipedia 2020032600 357
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Turks_and_Caicos_Islands daily en.wikipedia 2020032600 820
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_United_States_Virgin_Islands daily en.wikipedia 2020032600 2442
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Åland_Islands daily en.wikipedia 2020032600 346
|
|
||||||
all-access all-agents Aurlus_Mabélé daily en.wikipedia 2020032600 612
|
|
||||||
all-access all-agents Bruce_Aylward daily en.wikipedia 2020032600 911
|
|
||||||
all-access all-agents COVID-19_Economic_Response_Task_Force daily en.wikipedia 2020032600 460
|
|
||||||
all-access all-agents COVID-19_Hospital daily en.wikipedia 2020032600 76
|
|
||||||
all-access all-agents COVID-19_Solidarity_Response_Fund daily en.wikipedia 2020032600 162
|
|
||||||
all-access all-agents Central_Hospital_of_Wuhan daily en.wikipedia 2020032600 258
|
|
||||||
all-access all-agents Chen_Yixin daily en.wikipedia 2020032600 82
|
|
||||||
all-access all-agents Chinese_Center_for_Disease_Control_and_Prevention daily en.wikipedia 2020032600 765
|
|
||||||
all-access all-agents Ciara_Kelly daily en.wikipedia 2020032600 210
|
|
||||||
all-access all-agents Dabie_Mountain_Regional_Medical_Centre daily en.wikipedia 2020032600 64
|
|
||||||
all-access all-agents Detto_Mariano daily en.wikipedia 2020032600 1936
|
|
||||||
all-access all-agents Duan_Zhengcheng daily en.wikipedia 2020032600 119
|
|
||||||
all-access all-agents Eurovision_Young_Musicians_2020 daily en.wikipedia 2020032600 125
|
|
||||||
all-access all-agents Fariborz_Raisdana daily en.wikipedia 2020032600 167
|
|
||||||
all-access all-agents Fernando_Simón daily en.wikipedia 2020032600 894
|
|
||||||
all-access all-agents Floyd_Cardoz daily en.wikipedia 2020032600 27784
|
|
||||||
all-access all-agents Francesco_Saverio_Pavone daily en.wikipedia 2020032600 172
|
|
||||||
all-access all-agents Giovanni_Battista_Rabino daily en.wikipedia 2020032600 193
|
|
||||||
all-access all-agents Hamid_Kahram daily en.wikipedia 2020032600 404
|
|
||||||
all-access all-agents Hong_Ling_(geneticist) daily en.wikipedia 2020032600 177
|
|
||||||
all-access all-agents Howard_P._Forman daily en.wikipedia 2020032600 108
|
|
||||||
all-access all-agents Italo_De_Zan daily en.wikipedia 2020032600 251
|
|
||||||
all-access all-agents Jacques_Oudin daily en.wikipedia 2020032600 231
|
|
||||||
all-access all-agents Joe_Grogan daily en.wikipedia 2020032600 235
|
|
||||||
all-access all-agents John_Bessler daily en.wikipedia 2020032600 1748
|
|
||||||
all-access all-agents Korea_Centers_for_Disease_Control_and_Prevention daily en.wikipedia 2020032600 214
|
|
||||||
all-access all-agents Lee_Cha-su daily en.wikipedia 2020032600 222
|
|
||||||
all-access all-agents Li_Zehua daily en.wikipedia 2020032600 248
|
|
||||||
all-access all-agents Lorenzo_Acquarone daily en.wikipedia 2020032600 886
|
|
||||||
all-access all-agents Luciana_Lamorgese daily en.wikipedia 2020032600 223
|
|
||||||
all-access all-agents Maria_Van_Kerkhove daily en.wikipedia 2020032600 1506
|
|
||||||
all-access all-agents Michael_Carton daily en.wikipedia 2020032600 111
|
|
||||||
all-access all-agents Michael_J._Ryan_(doctor) daily en.wikipedia 2020032600 2182
|
|
||||||
all-access all-agents Nashom_Wooden daily en.wikipedia 2020032600 2128
|
|
||||||
all-access all-agents Nasser_Shabani daily en.wikipedia 2020032600 387
|
|
||||||
all-access all-agents Nicolas_Alfonsi daily en.wikipedia 2020032600 213
|
|
||||||
all-access all-agents Operation_Broadshare daily en.wikipedia 2020032600 146
|
|
||||||
all-access all-agents Preta_Gil daily en.wikipedia 2020032600 36
|
|
||||||
all-access all-agents Robert_Blair_(political_advisor) daily en.wikipedia 2020032600 241
|
|
||||||
all-access all-agents SAARC_COVID-19_Emergency_Fund daily en.wikipedia 2020032600 757
|
|
||||||
all-access all-agents SHC014-CoV daily en.wikipedia 2020032600 1595
|
|
||||||
all-access all-agents Safe_Hands_Challenge daily en.wikipedia 2020032600 50
|
|
||||||
all-access all-agents Stephen_Schwartz_(pathologist) daily en.wikipedia 2020032600 697
|
|
||||||
all-access all-agents Steven_Dick daily en.wikipedia 2020032600 7451
|
|
||||||
all-access all-agents Vittorio_Gregotti daily en.wikipedia 2020032600 395
|
|
||||||
all-access all-agents Walter_Robb_(engineer) daily en.wikipedia 2020032600 850
|
|
||||||
all-access all-agents Wang_Xiaodong_(born_1960) daily en.wikipedia 2020032600 146
|
|
||||||
all-access all-agents White_Center_COVID-19_quarantine_site daily en.wikipedia 2020032600 10
|
|
||||||
all-access all-agents Zororo_Makamba daily en.wikipedia 2020032600 2846
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_British_Overseas_Territories daily en.wikipedia 2020032600 15
|
|
||||||
all-access all-agents List_of_public_venues_and_institutions_closed_during_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 1783
|
|
||||||
all-access all-agents Notifiable_diseases_in_the_United_Kingdom daily en.wikipedia 2020032600 88
|
|
||||||
all-access all-agents Timeline_of_the_2020_coronavirus_pandemic_in_Afghanistan daily en.wikipedia 2020032600 188
|
|
||||||
all-access all-agents Timeline_of_the_2020_coronavirus_pandemic_in_Croatia daily en.wikipedia 2020032600 351
|
|
||||||
all-access all-agents Timeline_of_the_2020_coronavirus_pandemic_in_Iraq daily en.wikipedia 2020032600 247
|
|
||||||
all-access all-agents Timeline_of_the_2020_coronavirus_pandemic_in_Pakistan daily en.wikipedia 2020032600 5430
|
|
||||||
all-access all-agents Timeline_of_the_2020_coronavirus_pandemic_in_Turkey daily en.wikipedia 2020032600 2071
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Washington daily en.wikipedia 2020032600 134
|
|
||||||
all-access all-agents Angelo_Moreschi daily en.wikipedia 2020032600 2472
|
|
||||||
all-access all-agents File:SARS-CoV-2_49534865371.jpg daily en.wikipedia 2020032600 173
|
|
||||||
all-access all-agents File:SARS-CoV_scanning_electron_microscope_image.jpg daily en.wikipedia 2020032600 247
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Los_Angeles daily en.wikipedia 2020032600 14
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_New_Orleans daily en.wikipedia 2020032600 11
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Orange_County,_California daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_San_Diego daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_San_Diego_County,_California daily en.wikipedia 2020032600 7
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_San_Francisco_County,_California daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_San_Mateo_County,_California daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Santa_Clara_County,_California daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Suffolk_County,_New_York daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents 2021_Summer_Olympics daily en.wikipedia 2020032600 331
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 509
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic-related_lists daily en.wikipedia 2020032600 170
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic_and_sports daily en.wikipedia 2020032600 4
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic_by_city daily en.wikipedia 2020032600 40
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic_by_continent daily en.wikipedia 2020032600 154
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic_by_country_and_territory daily en.wikipedia 2020032600 2215
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic_by_dependent_territory daily en.wikipedia 2020032600 14
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic_by_location daily en.wikipedia 2020032600 126
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic_in_China daily en.wikipedia 2020032600 90
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic_in_Danish_dependencies daily en.wikipedia 2020032600 19
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic_in_Malaysia daily en.wikipedia 2020032600 12
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic_in_mainland_China daily en.wikipedia 2020032600 98
|
|
||||||
all-access all-agents Category:2019–20_coronavirus_pandemic_templates daily en.wikipedia 2020032600 139
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Afghanistan daily en.wikipedia 2020032600 6
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Africa daily en.wikipedia 2020032600 83
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Asia daily en.wikipedia 2020032600 116
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Bosnia_and_Herzegovina daily en.wikipedia 2020032600 21
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_British_Overseas_Territories daily en.wikipedia 2020032600 39
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Canada daily en.wikipedia 2020032600 89
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Croatia daily en.wikipedia 2020032600 30
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Crown_dependencies daily en.wikipedia 2020032600 49
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Cyprus daily en.wikipedia 2020032600 21
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Denmark daily en.wikipedia 2020032600 65
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Europe daily en.wikipedia 2020032600 619
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Finland daily en.wikipedia 2020032600 35
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_France daily en.wikipedia 2020032600 142
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Germany daily en.wikipedia 2020032600 172
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Hungary daily en.wikipedia 2020032600 32
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_India daily en.wikipedia 2020032600 199
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Iran daily en.wikipedia 2020032600 43
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Iraq daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Italy daily en.wikipedia 2020032600 367
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_North_America daily en.wikipedia 2020032600 83
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Oceania daily en.wikipedia 2020032600 21
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Overseas_France daily en.wikipedia 2020032600 26
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Pakistan daily en.wikipedia 2020032600 44
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_South_America daily en.wikipedia 2020032600 41
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_South_Korea daily en.wikipedia 2020032600 40
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Spain daily en.wikipedia 2020032600 168
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Sweden daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_Turkey daily en.wikipedia 2020032600 80
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_insular_areas_of_the_United_States daily en.wikipedia 2020032600 31
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_the_Caribbean daily en.wikipedia 2020032600 56
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_the_Dutch_Caribbean daily en.wikipedia 2020032600 15
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_the_Netherlands daily en.wikipedia 2020032600 62
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_the_Philippines daily en.wikipedia 2020032600 28
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_the_Republic_of_Ireland daily en.wikipedia 2020032600 34
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_the_United_Kingdom daily en.wikipedia 2020032600 212
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_the_United_States daily en.wikipedia 2020032600 522
|
|
||||||
all-access all-agents Category:2020_coronavirus_pandemic_in_the_United_States_by_state daily en.wikipedia 2020032600 650
|
|
||||||
all-access all-agents Category:A-Class_COVID-19_articles daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents Category:B-Class_COVID-19_articles daily en.wikipedia 2020032600 17
|
|
||||||
all-access all-agents Category:Book-Class_COVID-19_articles daily en.wikipedia 2020032600 5
|
|
||||||
all-access all-agents Category:C-Class_COVID-19_articles daily en.wikipedia 2020032600 25
|
|
||||||
all-access all-agents Category:COVID-19_articles_by_quality daily en.wikipedia 2020032600 9
|
|
||||||
all-access all-agents Category:Category-Class_COVID-19_articles daily en.wikipedia 2020032600 7
|
|
||||||
all-access all-agents Category:Containment_efforts_related_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 69
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 1294
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_Cameroon daily en.wikipedia 2020032600 55
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_China daily en.wikipedia 2020032600 149
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_France daily en.wikipedia 2020032600 378
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_Hungary daily en.wikipedia 2020032600 126
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_South_Korea daily en.wikipedia 2020032600 64
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_Spain daily en.wikipedia 2020032600 213
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_Sweden daily en.wikipedia 2020032600 17
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_Turkey daily en.wikipedia 2020032600 68
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_Zimbabwe daily en.wikipedia 2020032600 50
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_the_Philippines daily en.wikipedia 2020032600 67
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_the_United_Kingdom daily en.wikipedia 2020032600 242
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_the_United_States daily en.wikipedia 2020032600 1078
|
|
||||||
all-access all-agents Category:Deaths_from_the_2020_coronavirus_pandemic_in_Iran daily en.wikipedia 2020032600 117
|
|
||||||
all-access all-agents Category:Deaths_from_the_2020_coronavirus_pandemic_in_Italy daily en.wikipedia 2020032600 376
|
|
||||||
all-access all-agents Category:Disambig-Class_COVID-19_articles daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents Category:Draft-Class_COVID-19_articles daily en.wikipedia 2020032600 5
|
|
||||||
all-access all-agents Category:Drafts_about_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents Category:Elections_postponed_due_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 28
|
|
||||||
all-access all-agents Category:Events_postponed_due_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 103
|
|
||||||
all-access all-agents Category:FA-Class_COVID-19_articles daily en.wikipedia 2020032600 4
|
|
||||||
all-access all-agents Category:FL-Class_COVID-19_articles daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents Category:FM-Class_COVID-19_articles daily en.wikipedia 2020032600 8
|
|
||||||
all-access all-agents Category:File-Class_COVID-19_articles daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents Category:Films_postponed_due_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 473
|
|
||||||
all-access all-agents Category:GA-Class_COVID-19_articles daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Category:High-importance_COVID-19_articles daily en.wikipedia 2020032600 10
|
|
||||||
all-access all-agents Category:Hospitals_and_medical_institutions_associated_with_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 30
|
|
||||||
all-access all-agents Category:Impact_of_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 156
|
|
||||||
all-access all-agents Category:Impact_of_the_2019–20_coronavirus_pandemic_on_cinema daily en.wikipedia 2020032600 68
|
|
||||||
all-access all-agents Category:Impact_of_the_2019–20_coronavirus_pandemic_on_music daily en.wikipedia 2020032600 28
|
|
||||||
all-access all-agents Category:Impact_of_the_2019–20_coronavirus_pandemic_on_politics daily en.wikipedia 2020032600 6
|
|
||||||
all-access all-agents Category:Impact_of_the_2019–20_coronavirus_pandemic_on_sports daily en.wikipedia 2020032600 45
|
|
||||||
all-access all-agents Category:Impact_of_the_2019–20_coronavirus_pandemic_on_television daily en.wikipedia 2020032600 104
|
|
||||||
all-access all-agents Category:Impact_of_the_2019–20_coronavirus_pandemic_on_the_2020_Summer_Olympics daily en.wikipedia 2020032600 15
|
|
||||||
all-access all-agents Category:Impact_of_the_2019–20_coronavirus_pandemic_on_the_restaurant_industry daily en.wikipedia 2020032600 13
|
|
||||||
all-access all-agents Category:Impact_of_the_2019–20_coronavirus_pandemic_on_the_video_game_industry daily en.wikipedia 2020032600 52
|
|
||||||
all-access all-agents Category:International_responses_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 20
|
|
||||||
all-access all-agents Category:Law_associated_with_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 49
|
|
||||||
all-access all-agents Category:List-Class_COVID-19_articles daily en.wikipedia 2020032600 3
|
|
||||||
all-access all-agents Category:Low-importance_COVID-19_articles daily en.wikipedia 2020032600 43
|
|
||||||
all-access all-agents Category:Mid-importance_COVID-19_articles daily en.wikipedia 2020032600 11
|
|
||||||
all-access all-agents Category:Motorsport_events_postponed_due_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 48
|
|
||||||
all-access all-agents Category:Music_events_cancelled_due_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 37
|
|
||||||
all-access all-agents Category:Music_events_postponed_due_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 45
|
|
||||||
all-access all-agents Category:NA-Class_COVID-19_articles daily en.wikipedia 2020032600 4
|
|
||||||
all-access all-agents Category:NA-importance_COVID-19_articles daily en.wikipedia 2020032600 24
|
|
||||||
all-access all-agents Category:National_responses_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 30
|
|
||||||
all-access all-agents Category:Organizations_associated_with_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 13
|
|
||||||
all-access all-agents Category:People_associated_with_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 426
|
|
||||||
all-access all-agents Category:Portal-Class_COVID-19_articles daily en.wikipedia 2020032600 5
|
|
||||||
all-access all-agents Category:Project-Class_COVID-19_articles daily en.wikipedia 2020032600 4
|
|
||||||
all-access all-agents Category:Quarantine_facilities_designated_for_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 10
|
|
||||||
all-access all-agents Category:Redirect-Class_COVID-19_articles daily en.wikipedia 2020032600 8
|
|
||||||
all-access all-agents Category:Religious_organizations_associated_with_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 9
|
|
||||||
all-access all-agents Category:Responses_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 21
|
|
||||||
all-access all-agents Category:SIA-Class_COVID-19_articles daily en.wikipedia 2020032600 3
|
|
||||||
all-access all-agents Category:SL-Class_COVID-19_articles daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents Category:Sports_events_cancelled_due_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 76
|
|
||||||
all-access all-agents Category:Sports_events_postponed_due_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 277
|
|
||||||
all-access all-agents Category:Start-Class_COVID-19_articles daily en.wikipedia 2020032600 13
|
|
||||||
all-access all-agents Category:Stub-Class_COVID-19_articles daily en.wikipedia 2020032600 23
|
|
||||||
all-access all-agents Category:Template-Class_COVID-19_articles daily en.wikipedia 2020032600 16
|
|
||||||
all-access all-agents Category:Timeline_of_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 220
|
|
||||||
all-access all-agents Category:Top-importance_COVID-19_articles daily en.wikipedia 2020032600 16
|
|
||||||
all-access all-agents Category:Unassessed_COVID-19_articles daily en.wikipedia 2020032600 10
|
|
||||||
all-access all-agents Category:Unknown-importance_COVID-19_articles daily en.wikipedia 2020032600 19
|
|
||||||
all-access all-agents Category:White_House_Coronavirus_Task_Force daily en.wikipedia 2020032600 40
|
|
||||||
all-access all-agents Category:WikiProject_COVID-19 daily en.wikipedia 2020032600 20
|
|
||||||
all-access all-agents Category:WikiProject_COVID-19_articles daily en.wikipedia 2020032600 42
|
|
||||||
all-access all-agents Category:WikiProject_COVID-19_members daily en.wikipedia 2020032600 6
|
|
||||||
all-access all-agents Category:Wikipedia_requested_images_of_COVID-19-related_topics daily en.wikipedia 2020032600 9
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Georgia daily en.wikipedia 2020032600 216
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Saint_Martin daily en.wikipedia 2020032600 12
|
|
||||||
all-access all-agents Coronavirus_(disambiguation) daily en.wikipedia 2020032600 99
|
|
||||||
all-access all-agents Coronavirus_disease daily en.wikipedia 2020032600 8892
|
|
||||||
all-access all-agents File:13981210000546637185832350425406_بخش_ویژه_«بیماران_کرونا»_بیمارستان_امام_خمینی.jpg daily en.wikipedia 2020032600 565
|
|
||||||
all-access all-agents File:2019-nCoV-CDC-23312_without_background.png daily en.wikipedia 2020032600 258
|
|
||||||
all-access all-agents File:2019-nCoV_HealthAdvisory_DOH_Philippines.jpg daily en.wikipedia 2020032600 10
|
|
||||||
all-access all-agents File:2020-03-Detalls_i_conseqüències_del_COVID-19_al_País_Valencià_14.jpg daily en.wikipedia 2020032600 136
|
|
||||||
all-access all-agents File:2020-03-Detalls_i_conseqüències_del_COVID-19_al_País_Valencià_27.jpg daily en.wikipedia 2020032600 5
|
|
||||||
all-access all-agents File:20200123_Qingdao_Metro_Line_3_car_No.3016.jpg daily en.wikipedia 2020032600 6
|
|
||||||
all-access all-agents File:2020_coronavirus_patients_in_China.svg daily en.wikipedia 2020032600 194
|
|
||||||
all-access all-agents File:2020_coronavirus_task_force.jpg daily en.wikipedia 2020032600 268
|
|
||||||
all-access all-agents File:6954Baliuag_enhanced_community_quarantine_63.jpg daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents File:7025Baliuag_enhanced_community_quarantine_16.jpg daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents File:Arrival_of_repatriated_Filipinos_from_China_2019-nCov.jpg daily en.wikipedia 2020032600 3
|
|
||||||
all-access all-agents File:Bailiwick_of_Guernsey_coronavirus_map.svg daily en.wikipedia 2020032600 4
|
|
||||||
all-access all-agents File:Banniere_librairie_covid19_black_820x312px.png daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents File:COVID-19-pandemic-Poland-timeline.gif daily en.wikipedia 2020032600 33
|
|
||||||
all-access all-agents File:COVID-19_Cases_in_Pennsylvania_by_counties.svg daily en.wikipedia 2020032600 5
|
|
||||||
all-access all-agents File:COVID-19_Cases_in_Washington_(state)_by_counties.svg daily en.wikipedia 2020032600 23
|
|
||||||
all-access all-agents File:COVID-19_Confirmed_Cases_Animated_Map.webm daily en.wikipedia 2020032600 53
|
|
||||||
all-access all-agents File:COVID-19_Death_Cases_in_Punjab,_India.png daily en.wikipedia 2020032600 13
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_Cases_In_Turkey.svg daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_Cases_in_Armenia_(Density).svg daily en.wikipedia 2020032600 6
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_Cases_in_Australia.svg daily en.wikipedia 2020032600 68
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_Cases_in_Egypt.svg daily en.wikipedia 2020032600 9
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_Cases_in_Mainland_China.svg daily en.wikipedia 2020032600 158
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_Cases_in_Metro_Manila.svg daily en.wikipedia 2020032600 18
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_Cases_in_New_Zealand_(Region_Totals).svg daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_Cases_in_New_Zealand_(Region_Totals)_v2.svg daily en.wikipedia 2020032600 31
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_Cases_in_Norway_by_municipalities.png daily en.wikipedia 2020032600 3
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_Cases_in_Paraguay.png daily en.wikipedia 2020032600 4
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_Cases_in_Punjab,_India.png daily en.wikipedia 2020032600 70
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_Cases_in_Uruguay.svg daily en.wikipedia 2020032600 10
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_World_Map-Confirmed.svg daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_World_Map-GlobalTravelBan.svg daily en.wikipedia 2020032600 146
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_World_Map.svg daily en.wikipedia 2020032600 3541
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_World_Map_(33).svg daily en.wikipedia 2020032600 25
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_World_Map_(34).svg daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_World_Map_(35).svg daily en.wikipedia 2020032600 8
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_World_Map_(36).svg daily en.wikipedia 2020032600 14
|
|
||||||
all-access all-agents File:COVID-19_Outbreak_World_Map_Total_Deaths_per_Capita.svg daily en.wikipedia 2020032600 362
|
|
||||||
all-access all-agents File:COVID-19_Pandemic_Cases_in_Vietnam.svg daily en.wikipedia 2020032600 19
|
|
||||||
all-access all-agents File:COVID-19_barnstar.png daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents File:COVID-19_community_quarantine_in_the_Philippines.svg daily en.wikipedia 2020032600 7
|
|
||||||
all-access all-agents File:COVID-19_outbreak_world_per_capita_cases_map.svg daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents File:COVID-19_pandemic_cases_in_the_Philippines.svg daily en.wikipedia 2020032600 177
|
|
||||||
all-access all-agents File:COVID-19_pandemic_cases_in_the_Philippines_by_residence.svg daily en.wikipedia 2020032600 13
|
|
||||||
all-access all-agents File:COVID-19_pandemic_cases_in_the_Philippines_with_deaths_and_recoveries.svg daily en.wikipedia 2020032600 12
|
|
||||||
all-access all-agents File:COVID-19_sign_at_New_Hope_UMC_Greenbush_WI_22_Mar_2020.jpg daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents File:COVID-19_sign_at_bagel_shop_in_Oconomowoc_WI_23_March_2020.jpg daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents File:COVID-19_sign_at_coffee_shop_in_Oconomowoc_WI_23_March_2020.jpg daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents File:Check_for_2019-nCoV_in_Beijing_railway_station_metro_station.jpg daily en.wikipedia 2020032600 11
|
|
||||||
all-access all-agents File:Check_for_2019-nCoV_in_Jishuitan_metro_station_(Beijing).jpg daily en.wikipedia 2020032600 12
|
|
||||||
all-access all-agents File:Citizens_of_Wuhan_lining_up_outside_of_a_drug_store_to_buy_masks_during_the_Wuhan_coronavirus_outbreak.jpg daily en.wikipedia 2020032600 32
|
|
||||||
all-access all-agents File:Coronavirus_Starbucks_notice.jpg daily en.wikipedia 2020032600 7
|
|
||||||
all-access all-agents File:Coronavirus_outbreak_in_Iran_2019-2020.png daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents File:Covid-19-Handshake-Alternatives-v3.gif daily en.wikipedia 2020032600 137
|
|
||||||
all-access all-agents File:Covid19_protective_measures.gif daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents File:Dried_pasta_shelves_empty_in_an_Australian_supermarket.jpg daily en.wikipedia 2020032600 269
|
|
||||||
all-access all-agents File:Emergenza_coronavirus_(49501382461).jpg daily en.wikipedia 2020032600 157
|
|
||||||
all-access all-agents File:Exit-Entry_Permit_for_Residents_During_the_Outbreak_of_2019-nCoV.png daily en.wikipedia 2020032600 6
|
|
||||||
all-access all-agents File:Health_Declaration_Card_of_China_(January_2020).jpg daily en.wikipedia 2020032600 5
|
|
||||||
all-access all-agents File:Kosovo_COVID19_Map.svg.png daily en.wikipedia 2020032600 16
|
|
||||||
all-access all-agents File:Novel_Coronavirus_SARS-CoV-2.jpg daily en.wikipedia 2020032600 507
|
|
||||||
all-access all-agents File:Protect_yourself_against_coronavirus-poster-english-3march2020.pdf daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents File:SARS-CoV-2_(Wikimedia_colors).svg daily en.wikipedia 2020032600 47
|
|
||||||
all-access all-agents File:SARS-CoV-2_scanning_electron_microscope_image.jpg daily en.wikipedia 2020032600 107
|
|
||||||
all-access all-agents File:SST_Corona_A4_Print-Somali.png daily en.wikipedia 2020032600 11
|
|
||||||
all-access all-agents File:SST_Corona_A4_print-V2.png daily en.wikipedia 2020032600 5
|
|
||||||
all-access all-agents File:Street_photo_in_Guangzhou_city_(49477439332).jpg daily en.wikipedia 2020032600 18
|
|
||||||
all-access all-agents File:Surgical_mask_and_84_disinfectant_liquid_purchase_limit_notice_at_a_CSF_Market_(20200202155633).jpg daily en.wikipedia 2020032600 16
|
|
||||||
all-access all-agents File:Symptoms_of_coronavirus_disease_2019_2.0.svg daily en.wikipedia 2020032600 903
|
|
||||||
all-access all-agents File:U.S._Government_COVID-19_Response_Plan,_March_13,_2020.pdf daily en.wikipedia 2020032600 353
|
|
||||||
all-access all-agents File:Wisconsin_National_Guard_(49666763872).jpg daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents File:Workers_having_their_temperatures_taken_as_they_enter_an_industrial_park_(cropped).jpg daily en.wikipedia 2020032600 12
|
|
||||||
all-access all-agents File:Строительство_инфекционного_центра_в_Новой_Москве_(21_марта;_А._Бочкарёв)_1.jpg daily en.wikipedia 2020032600 23
|
|
||||||
all-access all-agents File:关于做好不明原因肺炎救治工作的紧急通知.pdf daily en.wikipedia 2020032600 43
|
|
||||||
all-access all-agents File:李文亮的训诫书.png daily en.wikipedia 2020032600 85
|
|
||||||
all-access all-agents File:湖南抗疫一线医生父子隔防护玻璃互相打气.webm daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents File:蔡總統視導33化學兵群_02.jpg daily en.wikipedia 2020032600 292
|
|
||||||
all-access all-agents File:雁塔_曲江收费站的防疫检查_01.jpg daily en.wikipedia 2020032600 7
|
|
||||||
all-access all-agents Portal:Coronavirus_disease_2019 daily en.wikipedia 2020032600 3371
|
|
||||||
all-access all-agents Portal:Pandemic daily en.wikipedia 2020032600 275
|
|
||||||
all-access all-agents 2020_Czech_Republic_coronavirus_lockdown daily en.wikipedia 2020032600 45
|
|
||||||
all-access all-agents 2020_France_coronavirus_lockdown daily en.wikipedia 2020032600 67
|
|
||||||
all-access all-agents 2020_Tyrol_coronavirus_lockdown daily en.wikipedia 2020032600 8
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_American_Samoa daily en.wikipedia 2020032600 49
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Atlanta daily en.wikipedia 2020032600 8
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Austin,_Texas daily en.wikipedia 2020032600 6
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Houston daily en.wikipedia 2020032600 5
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Klang_Valley daily en.wikipedia 2020032600 19
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Lombardy daily en.wikipedia 2020032600 22
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Los_Angeles_County,_California daily en.wikipedia 2020032600 19
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Myanmar daily en.wikipedia 2020032600 979
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Nauru_2 daily en.wikipedia 2020032600 16
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Prince_Edward_Island daily en.wikipedia 2020032600 146
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Samoa daily en.wikipedia 2020032600 24
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_San_Antonio daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_San_Francisco daily en.wikipedia 2020032600 10
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Seattle daily en.wikipedia 2020032600 8
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Tonga daily en.wikipedia 2020032600 6
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Vanuatu daily en.wikipedia 2020032600 9
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Westchester_County,_New_York daily en.wikipedia 2020032600 4
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_Yukon daily en.wikipedia 2020032600 131
|
|
||||||
all-access all-agents 2020_coronavirus_pandemic_in_the_Northern_Mariana_Islands daily en.wikipedia 2020032600 26
|
|
||||||
all-access all-agents Black_Monday_II daily en.wikipedia 2020032600 6
|
|
||||||
all-access all-agents COVID-19-related_topics daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents COVID-19_in_the_United_Kingdom daily en.wikipedia 2020032600 32
|
|
||||||
all-access all-agents COVID-19_in_the_United_States daily en.wikipedia 2020032600 255
|
|
||||||
all-access all-agents COVID-19_pandemic_in_Canada daily en.wikipedia 2020032600 6
|
|
||||||
all-access all-agents COVID-19_pandemic_in_Europe daily en.wikipedia 2020032600 8
|
|
||||||
all-access all-agents COVID-19_pandemic_in_France daily en.wikipedia 2020032600 94
|
|
||||||
all-access all-agents COVID-19_pandemic_in_Germany daily en.wikipedia 2020032600 11
|
|
||||||
all-access all-agents COVID-19_pandemic_in_India daily en.wikipedia 2020032600 32
|
|
||||||
all-access all-agents COVID-19_pandemic_in_Iran daily en.wikipedia 2020032600 7
|
|
||||||
all-access all-agents COVID-19_pandemic_in_Italy daily en.wikipedia 2020032600 41
|
|
||||||
all-access all-agents COVID-19_pandemic_in_Spain daily en.wikipedia 2020032600 134
|
|
||||||
all-access all-agents COVID-19_pandemic_in_Switzerland daily en.wikipedia 2020032600 26
|
|
||||||
all-access all-agents COVID-19_pandemic_in_mainland_China daily en.wikipedia 2020032600 14
|
|
||||||
all-access all-agents COVID-19_pandemic_in_the_Philippines daily en.wikipedia 2020032600 7
|
|
||||||
all-access all-agents COVID-19_pandemic_in_the_United_Kingdom daily en.wikipedia 2020032600 10
|
|
||||||
all-access all-agents COVID-19_pandemic_in_the_United_States daily en.wikipedia 2020032600 20
|
|
||||||
all-access all-agents Censorship_during_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 3
|
|
||||||
all-access all-agents Coronavirus_Task_Force daily en.wikipedia 2020032600 12
|
|
||||||
all-access all-agents Impact_of_the_2020_coronavirus_pandemic_in_Croatia daily en.wikipedia 2020032600 4
|
|
||||||
all-access all-agents P:COVID-19 daily en.wikipedia 2020032600 22
|
|
||||||
all-access all-agents Timeline_of_the_2019–20_coronavirus_pandemic_in_April_2020 daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Wuhan_coronavirus daily en.wikipedia 2020032600 54
|
|
||||||
all-access all-agents Xenophobia_and_racism_related_to_the_2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 396
|
|
||||||
all-access all-agents Category:Deaths_from_the_2019–20_coronavirus_pandemic_in_United_States daily en.wikipedia 2020032600 4
|
|
||||||
all-access all-agents Portal:COVID-19 daily en.wikipedia 2020032600 482
|
|
||||||
all-access all-agents Template:2019–20_coronavirus_pandemic daily en.wikipedia 2020032600 663
|
|
||||||
all-access all-agents Template:2019–20_coronavirus_pandemic_data daily en.wikipedia 2020032600 25336
|
|
||||||
all-access all-agents Template:2019–20_coronavirus_pandemic_sidebar daily en.wikipedia 2020032600 21
|
|
||||||
all-access all-agents Template:2020_coronavirus_pandemic_by_Arkansas_county daily en.wikipedia 2020032600 24
|
|
||||||
all-access all-agents Template:2020_coronavirus_pandemic_by_California_county daily en.wikipedia 2020032600 363
|
|
||||||
all-access all-agents Template:2020_coronavirus_pandemic_in_Croatia_(navbox) daily en.wikipedia 2020032600 7
|
|
||||||
all-access all-agents Template:2020_coronavirus_pandemic_in_India daily en.wikipedia 2020032600 103
|
|
||||||
all-access all-agents Template:2020_coronavirus_pandemic_in_the_United_Kingdom daily en.wikipedia 2020032600 70
|
|
||||||
all-access all-agents Template:2020_coronavirus_quarantines daily en.wikipedia 2020032600 129
|
|
||||||
all-access all-agents Template:2020_coronavirus_quarantines_outside_Hubei daily en.wikipedia 2020032600 719
|
|
||||||
all-access all-agents Template:COVID-19-stub daily en.wikipedia 2020032600 17
|
|
||||||
all-access all-agents Template:COVID-19_Barnstar daily en.wikipedia 2020032600 5
|
|
||||||
all-access all-agents Template:COVID-19_testing daily en.wikipedia 2020032600 1656
|
|
||||||
all-access all-agents Template:COVID19_GS_editnotice daily en.wikipedia 2020032600 7
|
|
||||||
all-access all-agents Template:COVID19_sanctions daily en.wikipedia 2020032600 3
|
|
||||||
all-access all-agents Template:COVID_invite daily en.wikipedia 2020032600 3
|
|
||||||
all-access all-agents Template:Current_confirmed_COVID-19_cases_in_Greece_by_gender_and_age daily en.wikipedia 2020032600 3
|
|
||||||
all-access all-agents Template:Interactive_COVID-19_maps daily en.wikipedia 2020032600 321
|
|
||||||
all-access all-agents Template:Off_wiki_Covid_19 daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Template:PartofWikiProject_COVID-19 daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Template:U.S._COVID-19_case_charts daily en.wikipedia 2020032600 9
|
|
||||||
all-access all-agents Template:User_WikiProject_COVID-19 daily en.wikipedia 2020032600 3
|
|
||||||
all-access all-agents Template:WikiProject_COVID-19 daily en.wikipedia 2020032600 3
|
|
||||||
all-access all-agents Template:WikiProject_COVID-19_tabs daily en.wikipedia 2020032600 3
|
|
||||||
all-access all-agents Template:WikiProject_COVID-19_topicon daily en.wikipedia 2020032600 4
|
|
||||||
all-access all-agents Draft:2020_coronavirus_pandemic_in_Wales daily en.wikipedia 2020032600 7
|
|
||||||
all-access all-agents Draft:2020_coronavirus_pandemic_in_the_Falkland_Islands daily en.wikipedia 2020032600 21
|
|
||||||
all-access all-agents Draft:COVID_19_in_Zimbabwe daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Draft:Corona_virus_cases_all_country_list daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Draft:Coronavirus:_Travel_restrictions,_border_shutdowns_by_country daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents Draft:Covid-19_Quarantine_Party_(Spotify_Playlist) daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Draft:DIY_hand_sanitizer daily en.wikipedia 2020032600 3
|
|
||||||
all-access all-agents Draft:Everything_You_Need_to_Know_About_Coronavirus daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Draft:Great_Toilet_Paper_Panic_of_2020 daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Draft:Hoarding_due_to_the_2019-2020_Coronavirus_Outbreak daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Draft:List_of_known_cases_of_COVID-19_in_the_United_States daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Draft:Possible_solutions_of_Covid_19 daily en.wikipedia 2020032600 1
|
|
||||||
all-access all-agents Draft:Santa_Clara_Coronavirus_Data daily en.wikipedia 2020032600 2
|
|
||||||
all-access all-agents Draft:Severe_acute_respiratory_syndrome-related_coronavirus daily en.wikipedia 2020032600 4
|
|
||||||
all-access all-agents Coronavirus_Scientific_Advisory_Board_(Turkey) daily en.wikipedia 2020032600 23
|
|
||||||
all-access all-agents Gaetano_Manfredi daily en.wikipedia 2020032600 69
|
|
||||||
all-access all-agents Jinyintan_Hospital daily en.wikipedia 2020032600 91
|
|
||||||
all-access all-agents Liang_Wudong daily en.wikipedia 2020032600 359
|
|
||||||
all-access all-agents Health_Protection_(Coronavirus,_Restrictions)_(England)_Regulations_2020 daily en.wikipedia 2020032600 291
|
|
||||||
all-access all-agents Middle_Class_Health_Benefits_Tax_Repeal_Act_of_2019 daily en.wikipedia 2020032600 83
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -1,94 +0,0 @@
|
|||||||
#!/usr/bin/env python3
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
#
|
|
||||||
# This script assumes the presence of the COVID-19 repo.
|
|
||||||
#
|
|
||||||
# It (1) reads in the article list and then (2) calls the Wikimedia API to
|
|
||||||
# fetch view information for each article. Output is to (3) JSON and TSV.
|
|
||||||
#
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
|
|
||||||
import requests
|
|
||||||
import argparse
|
|
||||||
import json
|
|
||||||
import csv
|
|
||||||
import time
|
|
||||||
import os.path
|
|
||||||
import datetime
|
|
||||||
#import feather
|
|
||||||
|
|
||||||
|
|
||||||
def parse_args():
|
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description='Call the views API repeatedly.')
|
|
||||||
parser.add_argument('-o', '--output_folder', help='Where to save output', default="../data/", type=str)
|
|
||||||
parser.add_argument('-i', '--article_file', help='File listing article names', default="../resources/articles.txt", type=str)
|
|
||||||
parser.add_argument('-d', '--query_date', help='Date if not yesterday, in YYYYMMDD format please.', type=str)
|
|
||||||
args = parser.parse_args()
|
|
||||||
|
|
||||||
return(args)
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
|
||||||
|
|
||||||
args = parse_args()
|
|
||||||
|
|
||||||
outputPath = args.output_folder
|
|
||||||
articleFile = args.article_file
|
|
||||||
|
|
||||||
if (args.query_date):
|
|
||||||
queryDate = args.query_date
|
|
||||||
else:
|
|
||||||
yesterday = datetime.datetime.today() - datetime.timedelta(days=1)
|
|
||||||
queryDate = yesterday.strftime("%Y%m%d")
|
|
||||||
|
|
||||||
queryDate = queryDate + "00" #requires specifying hours
|
|
||||||
|
|
||||||
|
|
||||||
articleList = []
|
|
||||||
#1 Load up the list of article names
|
|
||||||
|
|
||||||
j_Out = f"{outputPath}dailyviews{queryDate}.json"
|
|
||||||
t_Out = f"{outputPath}dailyviews{queryDate}.tsv"
|
|
||||||
|
|
||||||
with open(articleFile, 'r') as infile:
|
|
||||||
next(infile) #skip header
|
|
||||||
articleList = list(infile)
|
|
||||||
|
|
||||||
j = []
|
|
||||||
|
|
||||||
#2 Repeatedly call the API with that list of names
|
|
||||||
|
|
||||||
for a in articleList:
|
|
||||||
a = a.strip("\"\n") #destringify
|
|
||||||
url= f"https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/en.wikipedia/all-access/all-agents/{a}/daily/{queryDate}/{queryDate}"
|
|
||||||
|
|
||||||
response = requests.get(url)
|
|
||||||
if response.ok:
|
|
||||||
jd = json.loads(response.content)
|
|
||||||
j.append(jd["items"][0])
|
|
||||||
time.sleep(.1)
|
|
||||||
else:
|
|
||||||
print(f"Not ok response: {response.status_code} from {url}")
|
|
||||||
|
|
||||||
#3 Save results as a JSON and TSV
|
|
||||||
|
|
||||||
#all data in j now, make json file
|
|
||||||
with open(j_Out, 'w') as j_outfile:
|
|
||||||
json.dump(j, j_outfile, indent=2)
|
|
||||||
|
|
||||||
with open(t_Out, 'w') as t_outfile:
|
|
||||||
dw = csv.DictWriter(t_outfile, sorted(j[0].keys()), delimiter='\t')
|
|
||||||
dw.writeheader()
|
|
||||||
dw.writerows(j)
|
|
||||||
|
|
||||||
|
|
||||||
# f_Out = outputPath + "dailyviews" + queryDate + ".feather"
|
|
||||||
# read the json back in and make a feather file?
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
|
|
||||||
main()
|
|
||||||
Reference in New Issue
Block a user