summaryrefslogtreecommitdiff
path: root/scraper/s2.py
diff options
context:
space:
mode:
Diffstat (limited to 'scraper/s2.py')
-rw-r--r--scraper/s2.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/scraper/s2.py b/scraper/s2.py
index 26334de8..36dbc906 100644
--- a/scraper/s2.py
+++ b/scraper/s2.py
@@ -178,10 +178,12 @@ class SemanticScholarAPI(object):
@staticmethod
def search(q, page=1, pageSize=10, yearFilter=None):
+ #print(q)
+ #print(yearFilter)
resp = requests.post(SemanticScholarAPI.SEARCH_ENDPOINT, json={
'authors': [],
'coAuthors': [],
- 'facets': {},
+ #'facets': {},
'page': page,
'pageSize': pageSize,
'publicationTypes': [],
@@ -191,5 +193,5 @@ class SemanticScholarAPI(object):
'venues': [],
'yearFilter': yearFilter,
}, headers=SemanticScholarAPI.headers)
- # print(resp.status_code)
+ #print(resp.status_code)
return None if resp.status_code != 200 else resp.json()