Metadata-Version: 2.1
Name: WOSplus
Version: 0.2.4
Summary: WOS+ is a tool for to manage and merge bibliographic databases like Web Of Science or Scopus
Home-page: https://github.com/restrepo/WOSplus
Author: Diego Restrepo
Author-email: restrepo@udea.edu.co
License: BSD
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: configparser
Requires-Dist: xlrd
Requires-Dist: requests
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: unidecode
Requires-Dist: python-levenshtein

# WOS+

<!-- [![Codacy Badge](https://api.codacy.com/project/badge/Grade/e9e840f8451e4894884c70a6759ff3a6)](https://www.codacy.com/app/restrepo/WOSplus?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=restrepo/WOSplus&amp;utm_campaign=Badge_Grade) -->

Load databases from [Web of Science](https://www.webofknowledge.com), [Scopus](https://www.scopus.com), [Scielo](https://www.webofknowledge.com), etc, and combine the results into a single database

For WOSplus execution it is recommended to define `drive.cfg` file in which you can specify the name of the files and its shared keys in Google drive. The `drive.cfg` file must be present in the execution folder. For example
``` bash
$ cat drive.cfg
[FILES]
CIB_Scielo.xlsx    = 0BxoOXsn2EUNIMldPUFlwNkdLOTQ
```
See also the `drive.cfg` file in the test folder which gives some addresses of sample databases stored in google drive. If the file is not found in the google drive cloud, it is searched and loaded locally, by using just the name of the file.
## Installation
Python 3 is required
``` bash
# pip install wosplus
```

## Basic usage
```python
import wosplus as wp
wos=wp.wosplus() 
wos.load_biblio('wos.txt')
#Data Frame stored as
wos.WOS
#or as
wos.biblio['WOS']
```
Further details in [test_sample.ipynb](https://github.com/restrepo/WOSplus/blob/master/test_sample.ipynb).

<!-- mv diagram to http://interactive.blockdiag.com and links as in https://github.com/jupyter/docker-stacks -->

## Visual Overview
![design](./internal/inherit-diagram.svg)


