pybliometrics
pybliometrics copied to clipboard
Python-based API-Wrapper to access Scopus
It looks like pybliometrics is not able to rotate between API keys anymore. I receive an "invalid API key" error, but if I edit the config file and append the...
It seems that the only consistent way of identifying objects is by its `eid` which has following structure: -. An example is `1-s2.0-S0893608024005562-si15.svg'` Therefore the most reliable strategy is to...
This API works exactly the same as the one of Scopus. To avoid code redundancy and increase maintainability this class simply inherits the one from Scopus
As mentioned in #353 it is best to split the Object Retrieval API into two classes: - ObjectMetadata - ObjectRetrieval This issue should implement the ObjectMetadata class which has a...
point to example on how to retrieve the new Scopus ID
Implementation of the ScienceDirect[ Article Entitlement Retrieval API](https://dev.elsevier.com/documentation/ArticleEntitlementAPI.wadl).
Implementation of the [Science Direct Subject Classifications API](https://dev.elsevier.com/documentation/SubjectClassificationsAPI.wadl).
PR for Issue #395. To implement the `PUT` method the whole search pipeline had to be extended. Summarised, the following changes were conducted: - Extension of `get_content` to use the...
Apparently it can happen that an author has duplicated publication counts by field. For instance, the result of `AuthorSearch('authlast(selten) and authfirst(reinhard)')` (our test case) has: ``` [{'@abbrev': 'ECON', '@frequency': '51',...
Every class should have a `__str__()` method.