2020-03-27 23:00:36 +00:00
|
|
|
#!/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
|
2020-03-28 01:08:43 +00:00
|
|
|
# fetch view information for each article. Output is to (3) JSON and TSV.
|
2020-03-27 23:00:36 +00:00
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
|
|
|
|
import requests
|
|
|
|
import argparse
|
|
|
|
import json
|
|
|
|
import csv
|
|
|
|
import time
|
|
|
|
import os.path
|
|
|
|
import datetime
|
2020-03-28 01:08:43 +00:00
|
|
|
#import feather
|
2020-03-27 23:00:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def parse_args():
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(description='Call the views API repeatedly.')
|
2020-03-28 00:24:18 +00:00
|
|
|
parser.add_argument('-o', '--output_folder', help='Where to save output', default="../data/", type=str)
|
2020-03-27 23:00:36 +00:00
|
|
|
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
|
2020-03-28 00:24:18 +00:00
|
|
|
|
|
|
|
if (args.query_date):
|
2020-03-27 23:00:36 +00:00
|
|
|
queryDate = args.query_date
|
|
|
|
else:
|
2020-03-28 00:24:18 +00:00
|
|
|
yesterday = datetime.datetime.today() - datetime.timedelta(days=1)
|
|
|
|
queryDate = yesterday.strftime("%Y%m%d")
|
|
|
|
|
|
|
|
queryDate = queryDate + "00" #requires specifying hours
|
2020-03-27 23:00:36 +00:00
|
|
|
|
|
|
|
|
2020-03-28 00:24:18 +00:00
|
|
|
articleList = []
|
2020-03-28 01:17:39 +00:00
|
|
|
#1 Load up the list of article names
|
|
|
|
|
2020-03-27 23:00:36 +00:00
|
|
|
with open(articleFile, 'r') as infileHandle:
|
2020-03-28 00:24:18 +00:00
|
|
|
theInfile = csv.reader(infileHandle)
|
|
|
|
next(theInfile) #skip header
|
2020-03-27 23:00:36 +00:00
|
|
|
for currentLine in theInfile:
|
2020-03-28 00:24:18 +00:00
|
|
|
articleList.append(currentLine)
|
2020-03-27 23:00:36 +00:00
|
|
|
|
2020-03-28 00:24:18 +00:00
|
|
|
j_Out = outputPath + "dailyviews" + queryDate + ".json"
|
2020-03-28 01:08:43 +00:00
|
|
|
t_Out = outputPath + "dailyviews" + queryDate + ".tsv"
|
|
|
|
|
|
|
|
j = []
|
2020-03-27 23:00:36 +00:00
|
|
|
|
|
|
|
i = 0 #iterator to deal with end of file
|
|
|
|
|
2020-03-28 01:17:39 +00:00
|
|
|
#2 Repeatedly call the API with that list of names
|
|
|
|
|
2020-03-27 23:00:36 +00:00
|
|
|
for a in articleList:
|
2020-03-28 00:24:18 +00:00
|
|
|
a = a[0] #destringify
|
2020-03-27 23:00:36 +00:00
|
|
|
i = i+1
|
|
|
|
url= "https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/en.wikipedia/all-access/all-agents/"
|
|
|
|
url= url + a + "/daily/" + queryDate + "/" + queryDate #for now, single date at a time
|
|
|
|
response = requests.get(url)
|
2020-03-28 00:24:18 +00:00
|
|
|
if response.ok:
|
2020-03-28 01:08:43 +00:00
|
|
|
jd = json.loads(response.content)
|
|
|
|
j.append(jd["items"][0])
|
|
|
|
time.sleep(.1)
|
2020-03-28 00:24:18 +00:00
|
|
|
|
2020-03-28 01:17:39 +00:00
|
|
|
#3 Save results as a JSON and TSV
|
2020-03-27 23:00:36 +00:00
|
|
|
|
2020-03-28 01:08:43 +00:00
|
|
|
#all data in j now, make json file
|
|
|
|
with open(j_Out, 'w') as j_outfile:
|
|
|
|
json.dump(j, j_outfile, indent=2)
|
2020-03-27 23:00:36 +00:00
|
|
|
|
2020-03-28 01:08:43 +00:00
|
|
|
with open(t_Out, 'w') as t_outfile:
|
|
|
|
dw = csv.DictWriter(t_outfile, sorted(j[0].keys()), delimiter='\t')
|
|
|
|
dw.writeheader()
|
|
|
|
dw.writerows(j)
|
2020-03-27 23:00:36 +00:00
|
|
|
|
|
|
|
|
2020-03-28 01:08:43 +00:00
|
|
|
f_Out = outputPath + "dailyviews" + queryDate + ".feather"
|
|
|
|
#read the json back in and make a feather file?
|
2020-03-27 23:00:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
|
|
|
main()
|