I have a list of EIDs linked to Scopus authors ids, I’ve been trying to retrieve the all science journal classification(code and name) from each article but I cannot find in the pybliometrics documentation the way to do it. I would appreciate some help about this!!
Thanks!
If the Abstract Retrieval does not provide this information, which is frequent, use the Serial Title API for workaround:
You get a list of namedtuples:
Unfortunately, the Serial Title API expects ISSNs. They are sometimes missing, occasionally wrong, and not necessarily stable. Scopus updates them twice a year.
If the ISSN is missing, try searching for the Serial (= the source) with the
SerialSearch()class:What you need would be in
s.results- it can be a very long list of tuples as it contains all kinds of source metrics.