Metadata-Version: 2.4
Name: rdash-sdk
Version: 0.1.1
Summary: A Python library for RDash SDK
Author: RDash
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests<3.0,>=2.28
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# rdash-sdk

Install:

```bash
pip install rdash-sdk
```

Usage:

```python
from rdash_sdk import ChunkUploader

# Example: initialize and use the uploader
# uploader = ChunkUploader(
#     init_url="https://api.example.com/uploads/init",
#     complete_url="https://api.example.com/uploads/complete",
#     auth_token="YOUR_TOKEN",
# )
# uploader.upload_file("/path/to/file")
```
