Closed astrochun closed 3 years ago
Try using view="FULL"
.
The abstract retrieval API provides multiple views, but they are not well documented: https://dev.elsevier.com/sc_abstract_retrieval_views.html.
In general, always go for the FULL view. I'm theory, this view is restricted to some users (according to the documentation), but I never met someone who couldn't access this view.
Yes, that fixed the issue. Thanks for the extended docs. I saw other Scopus Search views but managed to missed the abstract one.
A related and perhaps this is a new issue for feature, but any chance to include the xors:funding-id
metadata in Funding
? I can create the issue. If you think this is straightforward, I can even create the PR.
The funding ID is part of the namedtuple in the list object funding
.
But the agency ID is not implemented. If you wanna provide a PR, that would be really great!
The funding ID is part of the namedtuple in the list object
funding
. But the agency ID is not implemented. If you wanna provide a PR, that would be really great!
@Michael-E-Rose, I'm a bit confused. I think there are different IDs involved. There is an agency ID and a "grant" id, which is provided as "funding-id" by Scopus. The Funding
object has the following attributes: agency
, string
, id
, acronym
, and country
. For example:
Funding(
agency='U.S. Department of Energy',
string='US Department of Energy',
id='http://data.elsevier.com/vocabulary/SciValFunders/100000015',
acronym='USDOE',
country='http://sws.geonames.org/6252001/'
)
I'm after the grant nos, so: "DE-AC02-09CH11466".
I can create the issue and PR for it though before I start, what should I use for the attribute since id
is taken. Would award_nos
be good? I had not looked at whether there are multiple entries in which case it may be desired to be a list
element. Thoughts?
Closed via #210 and corresponding PR #211.
Bug report? Please state your pybliometrics version and a complete code snippet to reproduce the bug.
I'm retrieving funding metadata from Scopus and I'm using your well-documented software. I get a 200 response; however, the funding metadata is empty. Here's my code to reproduce:
I'm using the correct
apiToken
. In fact, I used Elsevier Interactive API tool: https://dev.elsevier.com/scopus.html#/Affiliation_Search and got the following (snippet for brevity):I can't spot the exact issue as it seems that you are using the correct metadata fields for
chained_get
.Thanks in advance.