Metadata-Version: 2.4
Name: artexion-sdk
Version: 0.1.0
Summary: Official Python SDK for the Artexion Cloud API
Home-page: https://artexion.cloud
Author: Artexion Team
Author-email: support@artexion.cloud
License: Apache-2.0
Project-URL: Documentation, https://docs.artexion.cloud
Project-URL: Repository, https://github.com/artexion/artexion-python-sdk
Project-URL: Issues, https://github.com/artexion/artexion-python-sdk/issues
Keywords: artexion,sdk,api,cloud,ai
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx<1.0.0,>=0.25.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.20.0; extra == "dev"
Requires-Dist: build>=1.2.1; extra == "dev"
Requires-Dist: twine>=5.1.1; extra == "dev"
Requires-Dist: ruff>=0.6.0; extra == "dev"
Dynamic: license-file

# Artexion Python SDK

Official Python client for the Artexion Cloud API.

This package is safe to publish independently from your backend codebase.
It only ships the client library (`artexion`) and does not include server
implementation details.

## Install

```bash
pip install artexion-sdk
```

## Quick Start

```python
from artexion import Client

client = Client(api_key="atx_live_your_api_key_here")
task = client.run("Summarize my unread emails", max_steps=8)

print(task.id, task.status)
print(task.result)
```

## Backward-Compatible Import

```python
from artexion_sdk import Client
```

## Requirements

- Python 3.8+
- `httpx>=0.25.0,<1.0.0`

## Release

See `PUBLISH.md` for exact build and upload commands.

## License

Apache License 2.0 (`Apache-2.0`). See `LICENSE`.
