Metadata-Version: 2.1
Name: intdash
Version: 2.0.0
Summary: intdash SDK for Python
Home-page: https://docs.intdash.jp/sdk/python/latest/en/
Author: aptpod,Inc
Author-email: sdk-support@aptpod.co.jp
License: Apache License 2.0
Keywords: intdash,intdash SDK
Platform: UNKNOWN
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: requests
Requires-Dist: tornado
Requires-Dist: debtcollector
Requires-Dist: protobuf


intdash SDK for Python is a client library that accesses the intdash resource API and real-time API.

## Install

You can install intdash SDK for Python (hereafter intdash-py) using PyPI. Install with the following command.

```
$ pip install intdash
```

## Usage

To start using intdash-py, create a client. To create a client, use the URL of the connection destination and the credentials of the edge account (token or user name/password combination). See intdash client for other available parameters.

```python
import intdash

client = intdash.Client(
    url = "https://example.intdash.jp",
    edge_token = "your_token",
)
```

Example:   
the edge resource is specified and the information of the own edge is retrieved.

```python
# Edge resource
edges = client.edges

# print out edge information
me = edges.me()
print(me)
```

## Documentation 

Documentation and links to additional resources are available at https://docs.intdash.jp/sdk/python/latest/en/



