Metadata-Version: 2.4
Name: pd4castr-api-sdk
Version: 1.2.0
Summary: Python client for the pd4castr API
Author: pd4castr
License: MIT License (MIT)
        
        Copyright (c) 2026 Endgame Economics Pty Ltd t/as Endgame Analytics
        <contact@endgameanalytics.com.au> https://endgameanalytics.com.au
        
        Permission is hereby granted, free of charge, to any person obtaining a copy of
        this software and associated documentation files (the "Software"), to deal in
        the Software without restriction, including without limitation the rights to
        use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
        the Software, and to permit persons to whom the Software is furnished to do so,
        subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
        FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
        COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
        IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
        CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License-File: LICENSE.md
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27.2
Requires-Dist: pydantic>=2.7.0
Provides-Extra: dev
Requires-Dist: mypy>=1.11.0; extra == 'dev'
Requires-Dist: pytest-cov>=5.0.0; extra == 'dev'
Requires-Dist: pytest-sugar>=1.0.0; extra == 'dev'
Requires-Dist: pytest>=8.2.0; extra == 'dev'
Requires-Dist: respx>=0.21.1; extra == 'dev'
Requires-Dist: ruff>=0.6.0; extra == 'dev'
Description-Content-Type: text/markdown

<div align="center">
  <img src="./docs/assets/logo.png" alt="pdView logo" width="92">

  <h1>pd4castr API SDK</h1>

  <p>Official Python client for the pd4castr API</p>

  <p>
    <a href="https://docs.v2.pd4castr.com.au/api-sdk/quick-start">Quick Start</a> •
    <a href="https://docs.v2.pd4castr.com.au/api-sdk/reference">Reference</a>
  </p>
</div>

---

## Installation

> Requires Python >= 3.11

```bash
pip install pd4castr-api-sdk
```

## Quick Start

```python
from pd4castr_api_sdk import Client

with Client(
    client_id="my-client-id",
    client_secret="my-client-secret",
) as client:
    models = client.get_models()
    print(f"Found {len(models)} models")
```

## Documentation

Visit our
[Documentation Site](https://docs.v2.pd4castr.com.au/api-sdk/quick-start) for
usage guides and full API reference.
