Metadata-Version: 2.4
Name: timeback-clr
Version: 0.2.2b20260326152502
Summary: Timeback CLR client for Comprehensive Learner Record operations
Project-URL: Homepage, https://developer.timeback.com
Project-URL: Documentation, https://docs.timeback.com
Project-URL: Repository, https://github.com/superbuilders/timeback-dev-python
Author-email: Timeback <dev@timeback.dev>
License-Expression: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: pydantic>=2.0
Requires-Dist: timeback-common>=0.1.0
Description-Content-Type: text/markdown

# timeback-clr

Timeback CLR (Comprehensive Learner Record) client for Python.

Provides an async client for managing CLR v2.0 verifiable credentials and API discovery.

## Installation

```bash
pip install timeback-clr
```

## Quick Start

```python
from timeback_clr import ClrClient

async with ClrClient(env="staging", client_id="...", client_secret="...") as client:
    # Upsert a CLR credential
    result = await client.credentials.upsert(credential)

    # Get API discovery information
    discovery = await client.discovery.get()
```
