Metadata-Version: 2.1
Name: raindrop-ai
Version: 0.0.31
Summary: Raindrop AI (Python SDK)
License: MIT
Author: Raindrop AI
Author-email: sdk@raindrop.ai
Requires-Python: >=3.10, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*, !=3.8.*, !=3.9.*
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pydantic (>=2.09,<3)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Requires-Dist: traceloop-sdk (==0.45.6)
Description-Content-Type: text/markdown

# Raindrop Python SDK

## Installation dependencies


```bash
pip install poetry
```

```bash
poetry install
```


## Run tests

### Using pytest (recommended)
```bash
# Run all tests
poetry run pytest

# Run tests with verbose output
poetry run pytest -v

# Run specific test file
poetry run pytest tests/test_trace_attributes.py

# Run specific test
poetry run pytest tests/test_trace_attributes.py::TestTraceAttributes::test_user_id_attribute_direct

# Run tests with coverage
poetry run pytest --cov=raindrop
```

### Using green (legacy)
```bash
poetry run green -vv
```






