Metadata-Version: 2.4
Name: querykey-cases
Version: 0.1.0
Summary: Python client for QueryKey Cases HTTP API
Author: QueryKey Cases Engineering
License-Expression: Apache-2.0
Project-URL: Homepage, https://querykey.com/developers/
Project-URL: Documentation, https://querykey.com/developers/
Project-URL: Repository, https://github.com/RellWilson/querykey-cases
Project-URL: Issues, https://github.com/RellWilson/querykey-cases/issues
Keywords: querykey,cases,api,sdk,troubleshooting
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Provides-Extra: publish
Requires-Dist: build; extra == "publish"
Requires-Dist: twine; extra == "publish"

# querykey-cases (Python)

```bash
pip install querykey-cases
```

```python
from querykey_cases import QueryKeyClient

client = QueryKeyClient(base_url="https://api.querykey.com")
print(client.search_cases(q="TypeError", limit=5))
```

Environment: `QKEY_API_BASE`, `QKEY_API_KEY`.

Local development:

```bash
pip install -e ./packages/querykey-cases-py
```

Release workflow:

```bash
python3 -m pip install --upgrade build twine
python3 -m build
python3 -m twine check dist/*
python3 -m twine upload dist/*
```

Notes:

- Python 3.10+
- `timeout_seconds` defaults to `10`
- `QueryKeyError` includes HTTP status and parsed error payload when available
