Skip to content

Instantly share code, notes, and snippets.

@computron
Created January 9, 2021 03:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save computron/c263f692f6e16e713ed6fa2832ea1f1e to your computer and use it in GitHub Desktop.
Save computron/c263f692f6e16e713ed6fa2832ea1f1e to your computer and use it in GitHub Desktop.
Get co-authors via Scopus
# Thanks to Shyam Dwaraknath!
# Make sure you have an API to SCOPUS set up
from pandas import DataFrame
from pybliometrics.scopus import AuthorRetrieval
author_number = 7404463800 # enter your Scopus author number here, look up on Scopus Author Search (free) https://www.scopus.com/freelookup/form/author.uri
au = AuthorRetrieval(author_number)
coauthors = DataFrame(au.get_coauthors())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment