Metadata-Version: 2.4
Name: mesa-rest
Version: 0.3.3
Summary: Python REST SDK for the Mesa API
Project-URL: Homepage, https://mesa.dev
Project-URL: Repository, https://github.com/mesa-dot-dev/py-rest
Author-email: Mesa <support@mesa.dev>
License-Expression: Apache-2.0
License-File: LICENSE
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
Requires-Dist: attrs>=21.3.0
Requires-Dist: httpx>=0.20.0
Requires-Dist: python-dateutil>=2.8.0
Description-Content-Type: text/markdown

# mesa-rest

Python REST SDK for the [Mesa](https://mesa.dev) API.

Generated from the OpenAPI specification using [openapi-python-client](https://github.com/openapi-generators/openapi-python-client).

## Installation

```bash
pip install mesa-rest
```

## Usage

```python
from mesa_rest import Client

client = Client(
    base_url="https://depot.mesa.dev/api/v1",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
)
```

## License

Apache-2.0
