Metadata-Version: 2.1
Name: xpboards
Version: 0.1.3
Summary: A python util for xpboards
Home-page: UNKNOWN
Author: Douglas Eloy
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: requests

# XPBoards Python Library

A python implementation to improve [XPBoards](https://web.xpboards.com.br/) datasets handling.

## Installation

To install from PyPI:

`pip install xpboards`

## Usage

With this library you can import, export, manipulate, list, create, update and clear your datasets from [XPBoards](https://web.xpboards.com.br/)

A creation example importing from a JSON file:

```python
import xpboards

xpb_services = xpboards.services(
    email="your-xpboards-account@email.com",
    password='your-password'
)

my_dataset = xpboards.dataset.from_json(
    path='my_data.json'
)
xpb_services.create_dataset(data=my_dataset, name='My Dataset')

```

Read the full documentation [here](#)

<sub>© 2021 by LongView</sub>

