Replies: 1 comment
-
Despite the substantial delay in my reply, I'll register a solution for future reference.. To retrieve specific fields for a paper from Semantic Scholar, you can use the from semanticscholar import SemanticScholar
sch = SemanticScholar()
fields = ['paperId','corpusId','url','title','publicationVenue','year','authors','externalIds','citationCount']
results = sch.get_paper_references('649def34f8be52c8b66281af98ae884c09aef38b', fields)
for item in results:
print(item) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I am new to semantic scholar, here in python as new to the service.
I looked at https://api.semanticscholar.org/api-docs/graph#tag/Paper-Data/operation/get_graph_get_paper_citations
I would love to get specific fields as result based a a queriy for a specific article.
For example:
https://api.semanticscholar.org/graph/v1/paper/649def34f8be52c8b66281af98ae884c09aef38b/references?offset=0&limit=1000&fields=paperId,corpusId,url,title,publicationVenue,year,authors,externalIds,citationCount
What would be the best way to do this with semanticscholar?
I would think it is a search_paper query but when I search with the semantic scholar identifier I recieve errors.
Any tips on how to proceed?
Regards Edzo
Beta Was this translation helpful? Give feedback.
All reactions