Metadata-Version: 2.1
Name: datahand
Version: 0.0.1
Summary: DataHandler is a collection of algorithms to read and handle data for research (e.g., Web of Science, USPTO) in Python.
Home-page: https://github.com/cnavarreteliz/polapy
Author: cnavarreteliz
Author-email: cnavarreteliz@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# Data Handler (datahand)

DataHandler is a collection of algorithms to read and handle data for research (e.g., Web of Science, USPTO) in Python.

DataHandler allows to manage a variety of typical sources used for research in Pandas.

## Installation

To install DataHandler, we recommend to use PyPI:

```
pip install datahandler
```

## First steps

### 1. Read data from Web of Science

```
from datahandler import read_wos

df = read_wos("file/to/path.txt")
```
