Metadata-Version: 2.4
Name: smplkit-sdk
Version: 2.1.1
Summary: Official Python SDK for the smplkit platform
Project-URL: Homepage, https://www.smplkit.com
Project-URL: Documentation, https://docs.smplkit.com
Project-URL: Repository, https://github.com/smplkit/python-sdk
License-Expression: MIT
License-File: LICENSE
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Requires-Dist: attrs>=21.3.0
Requires-Dist: httpx>=0.25.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: python-dateutil>=2.9.0
Requires-Dist: websockets>=13.0
Provides-Extra: dev
Requires-Dist: openapi-python-client>=0.21.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff>=0.4.0; extra == 'dev'
Description-Content-Type: text/markdown

# smplkit Python SDK

The official Python SDK for [smplkit](https://smplkit.com) — platform infrastructure for SaaS companies.

## Installation

```bash
pip install smplkit-sdk
```

## Quick Start

```python
from smplkit import SmplClient

client = SmplClient(api_key="sk_api_your_key_here")
```

## Documentation

Full guides, code examples, and API reference: **[docs.smplkit.com](https://docs.smplkit.com)**

- [Getting Started](https://docs.smplkit.com/getting-started)
- [Python SDK Guide](https://docs.smplkit.com/python/)
- [API Reference](https://docs.smplkit.com/api-reference/overview)

## Requirements

- Python 3.10+

## License

MIT
