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
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
2020-04-01 14:15:12 +00:00
|
|
|
import sys
|
|
|
|
import subprocess
|
2020-03-27 23:00:36 +00:00
|
|
|
import requests
|
|
|
|
import argparse
|
|
|
|
import json
|
|
|
|
import time
|
|
|
|
import os.path
|
2020-04-01 14:15:12 +00:00
|
|
|
import argparse
|
2020-03-27 23:00:36 +00:00
|
|
|
import datetime
|
2020-03-29 01:46:35 +00:00
|
|
|
import logging
|
2020-04-01 14:15:12 +00:00
|
|
|
from csv import DictWriter
|
2020-03-29 01:46:35 +00:00
|
|
|
#import feather #TBD
|
2020-03-27 23:00:36 +00:00
|
|
|
|
|
|
|
def parse_args():
|
2020-04-01 14:42:24 +00:00
|
|
|
parser = argparse.ArgumentParser(description='Call the views API to collect Wikipedia view data.')
|
2020-04-01 14:51:20 +00:00
|
|
|
parser.add_argument('-o', '--output_folder', help='Where to save output', default="wikipedia/data", type=str)
|
|
|
|
parser.add_argument('-i', '--article_file', help='File listing article names', default="wikipedia/resources/enwp_wikiproject_covid19_articles.txt", type=str)
|
2020-04-01 14:15:12 +00:00
|
|
|
parser.add_argument('-d', '--query_date', help='Date if not yesterday, in YYYYMMDD format.', type=str)
|
|
|
|
parser.add_argument('-L', '--logging_level', help='Logging level. Options are debug, info, warning, error, critical. Default: info.', default='info', type=str),
|
|
|
|
parser.add_argument('-W', '--logging_destination', help='Logging destination file. (default: standard error)', type=str),
|
2020-03-27 23:00:36 +00:00
|
|
|
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
|
|
|
|
2020-03-29 01:46:35 +00:00
|
|
|
#handle -d
|
2020-04-01 14:15:12 +00:00
|
|
|
if args.query_date:
|
2020-04-01 20:14:05 +00:00
|
|
|
query_date = args.query_date
|
2020-03-27 23:00:36 +00:00
|
|
|
else:
|
2020-03-28 00:24:18 +00:00
|
|
|
yesterday = datetime.datetime.today() - datetime.timedelta(days=1)
|
2020-04-01 20:14:05 +00:00
|
|
|
query_date = yesterday.strftime("%Y%m%d")
|
2020-03-28 00:24:18 +00:00
|
|
|
|
2020-03-29 01:46:35 +00:00
|
|
|
#handle -L
|
2020-04-01 14:15:12 +00:00
|
|
|
loglevel_mapping = { 'debug' : logging.DEBUG,
|
|
|
|
'info' : logging.INFO,
|
|
|
|
'warning' : logging.WARNING,
|
|
|
|
'error' : logging.ERROR,
|
|
|
|
'critical' : logging.CRITICAL }
|
|
|
|
|
|
|
|
if args.logging_level in loglevel_mapping:
|
|
|
|
loglevel = loglevel_mapping[args.logging_level]
|
|
|
|
else:
|
2020-03-29 01:46:35 +00:00
|
|
|
print("Choose a valid log level: debug, info, warning, error, or critical")
|
|
|
|
exit
|
|
|
|
|
2020-04-01 14:15:12 +00:00
|
|
|
#handle -W
|
|
|
|
if args.logging_destination:
|
|
|
|
logging.basicConfig(filename=args.logging_destination, filemode='a', level=loglevel)
|
|
|
|
else:
|
|
|
|
logging.basicConfig(level=loglevel)
|
2020-03-27 23:00:36 +00:00
|
|
|
|
2020-04-01 14:15:12 +00:00
|
|
|
export_git_hash = subprocess.check_output(['git', 'rev-parse', 'HEAD']).decode().strip()
|
|
|
|
export_git_short_hash = subprocess.check_output(['git', 'rev-parse', '--short', 'HEAD']).decode().strip()
|
|
|
|
export_time = str(datetime.datetime.now())
|
2020-04-01 20:14:05 +00:00
|
|
|
export_date = datetime.datetime.today().strftime("%Y%m%d")
|
2020-03-29 01:46:35 +00:00
|
|
|
|
2020-04-01 14:15:12 +00:00
|
|
|
logging.info(f"Starting run at {export_time}")
|
|
|
|
logging.info(f"Last commit: {export_git_hash}")
|
2020-03-27 23:00:36 +00:00
|
|
|
|
2020-04-01 14:15:12 +00:00
|
|
|
#1 Load up the list of article names
|
2020-04-01 20:14:05 +00:00
|
|
|
j_outfilename = os.path.join(outputPath, f"digobs_covid19-wikipedia-enwiki_dailyviews-{export_date}.json")
|
|
|
|
t_outfilename = os.path.join(outputPath, f"digobs_covid19-wikipedia-enwiki_dailyviews-{export_date}.tsv")
|
2020-03-28 01:08:43 +00:00
|
|
|
|
2020-03-28 03:27:02 +00:00
|
|
|
with open(articleFile, 'r') as infile:
|
2020-03-28 21:09:28 +00:00
|
|
|
articleList = list(infile)
|
2020-03-27 23:00:36 +00:00
|
|
|
|
2020-03-29 01:46:35 +00:00
|
|
|
success = 0 #for logging how many work/fail
|
|
|
|
failure = 0
|
2020-03-28 21:12:36 +00:00
|
|
|
|
2020-04-01 14:15:12 +00:00
|
|
|
#3 Save results as a JSON and TSV
|
|
|
|
with open(j_outfilename, 'w') as j_outfile, \
|
|
|
|
open(t_outfilename, 'w') as t_outfile:
|
2020-03-28 21:12:36 +00:00
|
|
|
|
2020-04-01 14:15:12 +00:00
|
|
|
#2 Repeatedly call the API with that list of names
|
|
|
|
for a in articleList:
|
|
|
|
a = a.strip("\"\n") #destringify
|
2020-04-01 20:14:05 +00:00
|
|
|
url= f"https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/en.wikipedia/all-access/all-agents/{a}/daily/{query_date}00/{query_date}00"
|
2020-03-28 21:12:36 +00:00
|
|
|
|
2020-04-01 14:15:12 +00:00
|
|
|
response = requests.get(url)
|
|
|
|
if response.ok:
|
|
|
|
jd = response.json()["items"][0]
|
|
|
|
success = success + 1
|
|
|
|
else:
|
|
|
|
failure = failure + 1
|
|
|
|
logging.warning(f"Failure: {response.status_code} from {url}")
|
2020-03-28 21:12:36 +00:00
|
|
|
|
2020-04-01 14:15:12 +00:00
|
|
|
# start writing the CSV File if it doesn't exist yet
|
|
|
|
try:
|
|
|
|
dw
|
|
|
|
except NameError:
|
|
|
|
dw = DictWriter(t_outfile, sorted(jd.keys()), delimiter='\t')
|
|
|
|
dw.writeheader()
|
2020-03-27 23:00:36 +00:00
|
|
|
|
2020-04-01 14:15:12 +00:00
|
|
|
logging.debug(f"printing data: {jd}")
|
2020-03-29 01:46:35 +00:00
|
|
|
|
2020-04-01 14:15:12 +00:00
|
|
|
# write out the line of the json file
|
|
|
|
print(json.dumps(jd), file=j_outfile)
|
2020-03-27 23:00:36 +00:00
|
|
|
|
2020-04-01 14:15:12 +00:00
|
|
|
# write out of the csv file
|
|
|
|
dw.writerow(jd)
|
2020-03-27 23:00:36 +00:00
|
|
|
|
2020-04-01 20:14:05 +00:00
|
|
|
# f_Out = outputPath + "dailyviews" + query_date + ".feather"
|
2020-03-28 03:27:02 +00:00
|
|
|
# read the json back in and make a feather file?
|
2020-04-01 14:15:12 +00:00
|
|
|
logging.debug(f"Run complete at {datetime.datetime.now()}")
|
|
|
|
logging.info(f"Processed {success} successful URLs and {failure} failures.")
|
2020-03-27 23:00:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
|
|
|
main()
|