aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/parse_cord19_csv.py21
1 files changed, 0 insertions, 21 deletions
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))