From 858147b071103c505bff643e35b503c623f20284 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 8 Apr 2020 15:59:59 -0700 Subject: refactor parse_cord19_csv.py into tool --- bin/parse_cord19_csv.py | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 bin/parse_cord19_csv.py (limited to 'bin') diff --git a/bin/parse_cord19_csv.py b/bin/parse_cord19_csv.py deleted file mode 100755 index dbc6cc5..0000000 --- a/bin/parse_cord19_csv.py +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env python3 - -""" -Trivial helper to transform the CORD-19 CSV file to JSON, and rename a couple -of the column keys. -""" - -import sys -import csv -import json - -CSVFILE = sys.argv[1] - -with open(CSVFILE, newline='') as csvfile: - reader = csv.DictReader(csvfile) - for row in reader: - row = dict(row) - row['mag_id'] = row.pop('Microsoft Academic Paper ID') - row['who_covidence_id'] = row.pop('WHO #Covidence').replace('#', '') - obj = dict(cord19_paper=row) - print(json.dumps(obj, sort_keys=True)) -- cgit v1.2.3