pybliometrics-dev / pybliometrics

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

AuthorRetrieval().name_variants field doc_count should be integer #332

Closed Michael-E-Rose closed 4 months ago

Michael-E-Rose commented 4 months ago
from pybliometrics.scopus import AuthorRetrieval
au = AuthorRetrieval(7004212771)
au.name_variants

output is:

[Variant(indexed_name='Kitchin J.', initials='J.R.', surname='Kitchin', given_name='John R.', doc_count='105'),
 Variant(indexed_name='Kitchin J.', initials='J.', surname='Kitchin', given_name='John', doc_count='13'),
 Variant(indexed_name='Kitchin J.', initials='J.R.', surname='Kitchin', given_name='J. R.', doc_count='8')]

Field "doc_count" should be integer.