You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we want to explore an openly accessible alternative to Scopus, or fetch data from an external source in an interactive session, this might be a good place to start.
They also provide the option to download their source database.
The text was updated successfully, but these errors were encountered:
To find all authors and works affiliated with the escience center:
(substitute email address with your own)
importrequestsopenalex="https://api.openalex.org/"polite_queue="mailto=EMAIL_ADDRESS"ror_id="https://ror.org/00rbjv475"# NL eScience Center# Find authorsendpoint="authors"filters=f"filter=last_known_institution.ror:{ror_id}"url=f"{openalex}/{endpoint}?{filters}&{polite_queue}"n_authors=requests.get(url).json()['meta']['count']
print(url)
print(f"Found {n_authors} authors associated with the eScience Center")
# Find worksendpoint="works"filters=f"filter=institutions.ror:{ror_id}"url=f"{openalex}/{endpoint}?{filters}&{polite_queue}"n_works=requests.get(url).json()['meta']['count']
print(url)
print(f"Found {n_works} works associated with the eScience Center")
https://api.openalex.org//authors?filter=last_known_institution.ror:https://ror.org/00rbjv475&mailto=EMAIL_ADDRESS
Found 203 authors associated with the eScience Center
https://api.openalex.org//works?filter=institutions.ror:https://ror.org/00rbjv475&mailto=EMAIL_ADDRESS
Found 470 works associated with the eScience Center
I just stumbled upon Open Alex, through a web app called LocalCitationNetwork (see their source here).
If we want to explore an openly accessible alternative to Scopus, or fetch data from an external source in an interactive session, this might be a good place to start.
They also provide the option to download their source database.
The text was updated successfully, but these errors were encountered: