I'm using the pybliometrics package to query the Scopus API in Python. Specifically, I'm using the AuthorRetrieval class to grab data about the author using an EID (name, affiliation, bibliometric info, etc.) and am also grabbing information about the co-authors.
To do so, I use the .get_coauthors() method on the AuthorRetrieval object, which provides me with named tuples of the co-authors -- works well!
I have been hitting a quota limit, however, after about 400 AuthorRetrieval queries. I am connected to our subscribing institution's VPN, and use a registered API key, so I should be able to run 5000 searches in a week before hitting the quota limit.
Does the .get_coauthors() method run an entirely separate API query, on top of the one already done by the AuthorRetrieval query? How would this affect our quota limit?
Pybliometrics version: 2.6.3