diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-02-16 14:21:32 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-02-16 14:21:32 +0100 |
| commit | c1ce13b41b595847f18d2f7232850b10cd677e66 (patch) | |
| tree | 7ce70a6899f49ac3633b6364bf26b9da762a89d8 /scraper/s2-final-report.py | |
| parent | 3a3a89f2c58eceee07b2cfcfb1700a61b34619e5 (diff) | |
get better pdf url
Diffstat (limited to 'scraper/s2-final-report.py')
| -rw-r--r-- | scraper/s2-final-report.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scraper/s2-final-report.py b/scraper/s2-final-report.py index 283ca4fc..451c1f78 100644 --- a/scraper/s2-final-report.py +++ b/scraper/s2-final-report.py @@ -85,7 +85,8 @@ def process_single_paper(row, paper_id, addresses, aggregate_citations, unknown_ res['title'] = paper.title # res['journal'] = paper.journal res['year'] = paper.year - res['pdf'] = paper.pdf_link + res['pdf'] = paper.pdf_links() + res['doi'] = paper.doi_links() # res['authors'] = ', '.join(paper.authors) # res['citations'] = [] |
