pybliometrics - 通过 get_coauthors() 检索的记录数量是否有限制?

pybliometrics - Is there a limit to the amount of records retrieved through get_coauthors()?

我正在使用 AuthorRetrieval class 从 Scopus 作者记录中获取信息,包括他们的共同作者。我注意到 get_coauthors() 函数最多只能检索 160 位合著者,即使有更多的合著者也是如此。

import pybliometrics
from pybliometrics.scopus import AuthorRetrieval
import pandas as pd

print(pybliometrics.__version__)

>> 2.7.0

au = AuthorRetrieval(7101875313)
co_au = au.get_coauthors()
len(co_au)

>> 160

au = AuthorRetrieval(35325278500)
co_au = au.get_coauthors()
len(co_au)

>> 160

这些作者在 scopus.com 上的记录表明他们都有 5000 多名关联的共同作者。

我们可以从 Scopus API 或 pybliometrics AuthoRetrieval 中的这个功能中提取的合著者数量是否有限制?

看来 160 是 get_coauthors() 函数的极限