Metadata-Version: 2.1
Name: hestia-earth.extend-bibliography
Version: 0.2.17
Summary: Hestia library to extend Bibliography Nodes with different APIs
Home-page: https://gitlab.com/hestia-earth/hestia-data-validation
Author: Guillaume Royer
Author-email: guillaumeroyer.mail@gmail.com
License: GPL-3.0-or-later
Keywords: hestia,mendeley
Platform: UNKNOWN
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: hestia-earth.schema (>=0.6.4)
Requires-Dist: python-Levenshtein
Requires-Dist: habanero
Requires-Dist: wos
Requires-Dist: xmltodict

# Hestia Extend Bibliography

## Install

```bash
pip install hestia_earth.extend_bibliography
```

### Usage

```python
from hestia_earth.extend_bibliography import extend

# nodes is a Dict {nodes: []}
result = extend(
  nodes,
  # pass in the desired crendentials for each API
  mendeley_api_url=MENDELEY_API_URL, # enable Mendeley
  wos_api_key=WOS_API_KEY, # enable WoS REST API
  wos_api_user=WOS_API_USER, wos_api_pwd=WOS_API_PASSWORD, # enable WoS SOAP API
  enable_crossref=False, # enable CrossRef as last fallback (slower)
)
```


