diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-11-03 17:23:12 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-11-03 17:23:12 +0100 |
| commit | 3e534be7b919bf402d3602fde5b45809201f06b1 (patch) | |
| tree | cf8a2fc6a7e29c3cb0216dfd38e6d3276c254499 /s2-dump-ids.py | |
| parent | 165aa0f4db22d4cc0fc71dd76baa58051d7503ed (diff) | |
| parent | 84e781ff9b41f6ad04a5c66024fd47efa5b39bbc (diff) | |
Merge branch 'master' of asdf.us:megapixels_dev
Diffstat (limited to 's2-dump-ids.py')
| -rw-r--r-- | s2-dump-ids.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/s2-dump-ids.py b/s2-dump-ids.py index 7b424787..8ecb0b6a 100644 --- a/s2-dump-ids.py +++ b/s2-dump-ids.py @@ -17,8 +17,10 @@ def s2_dump_ids(): write_json('ids.json', id_list) def process_paper(fn, ids): + print(fn) with open(fn, 'r') as f: data = json.load(f) + print(data['paperId']) ids[data['paperId']] = True for cite in data['citations']: ids[cite['paperId']] = True |
