Python package simplifies access to the WoS RESTful API
Project description
restful-wos
A client for Clarivate Analytics' Web of Science RESTful API.
Currently requests and extracts data in RIS format.
Installation
From PyPI via pip
$ pip install restful-wos
Latest development version:
$ git clone git+https://github.com/ConnectedSystems/restful-wos.git
$ cd restful-wos
$ pip install -e .
Usage
Firstly, put your Web of Science access tokens into a yaml file in the following format:
restful_wos:
wos_lite: YOUR ACCESS TOKEN FOR THE `LITE` API
wos_expanded: YOUR ACCESS TOKEN FOR THE `EXPANDED` API
Then simply pass in the location of the file to the RESTful client:
import restful_wos
# Create client and send query
client = restful_wos.RESTClient('config.yml')
search_request = 'TS=(uncertain* AND (catchment OR watershed OR water))'
resp = client.query(search_request, time_span=('2018-11-01', '2018-12-31'))
# Convert parsed responses into RIS records
ris_data = restful_wos.to_ris_text(resp)
# Output to a txt file
restful_wos.write_file(ris_data, 'ris_output', overwrite=True)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
restful-wos-1.0.1.tar.gz
(6.6 kB
view details)
File details
Details for the file restful-wos-1.0.1.tar.gz.
File metadata
- Download URL: restful-wos-1.0.1.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59e95546d7d919f5d71ea4c5f62e23fddd6b5919ad3d2665a85a463dafe8539f
|
|
| MD5 |
89b82e55e87dc149ccb50f0c0c747fd7
|
|
| BLAKE2b-256 |
0f1355e3a07514b92bdbf9bae5c5cdb15e5a74cb3c1c9c917b6bc7423bc33b73
|