Metadata-Version: 2.4
Name: sdata-client
Version: 0.1.0
Summary: Python client for sdata FastAPI service.
Author: Danny Zhang
Author-email: Danny Zhang <zhangyi_ZJ@foxmail.com>
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.0
Dynamic: license-file

# sdata

A simple Python client for calling the sdata FastAPI service.

## Installation

```bash
pip install .
```

## Usage

```python
from sdata import SDataClient

client = SDataClient("http://localhost:8000")
result = client.call_api("get_ticks", {"security": "000001.XSHE", "count": 8})
print(result)
```
