pybliometrics-dev / pybliometrics

Python-based API-Wrapper to access Scopus
https://pybliometrics.readthedocs.io/en/stable/
Other
414 stars 128 forks source link

Get citedby articles #124

Closed VJalili closed 5 years ago

VJalili commented 5 years ago

The ScopusSearch class returns the number of articles citing a given article:

https://github.com/pybliometrics-dev/pybliometrics/blob/dabf3ef9000cd80f022da6e1c069d9a3a95b8d45/pybliometrics/scopus/scopus_search.py#L93

Is there any method or Scopus API that returns the list of these articles?

Michael-E-Rose commented 5 years ago

Yes and no. You would have to make another query like "REF(xxx)".

VJalili commented 5 years ago

Any examples?

Michael-E-Rose commented 5 years ago

Well, if 2-s2.0-84981347698 is the paper whose citing papers you're interested in, you use the ScopusSearch class with the query REF(2-s2.0-84981347698).

https://pybliometrics.readthedocs.io/en/stable/examples/ScopusSearch.html describes how to continue then.