Metadata-Version: 2.5
Name: arena-physica-atlas
Version: 0.1.2
Summary: Typed Python SDK for Atlas
Project-URL: Documentation, https://atlas-platform.mintlify.app/platform_2/sdk
Author: Arena Physica
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: httpx<0.29.0,>=0.23.0
Requires-Dist: pydantic<3.0.0,>=2.0.0
Description-Content-Type: text/markdown

# Atlas SDK for Python

Typed Python client for the Atlas API.

## Installation

```bash
pip install arena-physica-atlas
```

## Usage

```python
from atlas_sdk import Sdk

atlas = Sdk(
    base_url="https://your-atlas-domain/api/v1",
    headers={"Authorization": "Bearer YOUR_TOKEN"},
)

jobs = atlas.get_jobs(limit=10).json()
```

See the [Atlas SDK documentation](https://atlas-platform.mintlify.app/platform_2/sdk)
for authentication and API details.
