Metadata-Version: 2.3
Name: soxai_data
Version: 0.0.1
Summary: SOXAI Data Science Library
Project-URL: Homepage, https://soxai.co.jp
Project-URL: Documentation, https://soxai.co.jp/docs
Project-URL: Repository, https://github.com/soxaidev/soxai_data
Project-URL: Bug Tracker, https://github.com/soxaidev/soxai_data/issues
Project-URL: Changelog, https://github.com/soxaidev/soxai_data/blob/master/CHANGELOG.md
Author-email: Shuang Liu <shuang.liu@soxai.co.jp>
Maintainer-email: Shuang Liu <shuang.liu@soxai.co.jp>
License: MIT License
        
        Copyright (c) [2024] [SOXAI Inc.]
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE.txt
Keywords: data,science,soxai
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Requires-Python: >=3.8
Requires-Dist: httpx
Requires-Dist: pandas
Description-Content-Type: text/markdown

# soxai_data python package

This package contains the data loader for SOXAI ring user.

## Installation

```bash
pip install soxai_data
```

## Usage

Get your token with your SOXAI account and use it to load the data.

go to [SOXAI_Platform](https://soxai-web-api-tiufu2wgva-df.a.run.app/) and login with your soxai account.
then generate your token and use it to load the data.

```python
from soxai_data import DataLoader

sx_data = DataLoader(token='your_token')
df = sx_data.getDailyData()
df.plot()
```