Metadata-Version: 2.4
Name: lium-sdk
Version: 0.1.3
Summary: A Python SDK for Lium API.
Author: Waris Ali
Project-URL: homepage, https://github.com/Datura-ai/lium-sdk
Project-URL: Repository, https://github.com/Datura-ai/lium-sdk
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: pydantic>=2.0.0
Requires-Dist: httpx>=0.24.0
Requires-Dist: requests>=2.31.0
Requires-Dist: build>=0.10.0
Requires-Dist: loguru>=0.7.0
Requires-Dist: paramiko>=3.5.1
Provides-Extra: docs
Requires-Dist: mkdocstrings[python]>=0.24.0; extra == "docs"
Requires-Dist: mkdocs-material>=9.0.0; extra == "docs"

# Lium SDK

A Python SDK for interacting with the Lium API.

## Table of Contents

- [Installation](#installation)
- [Usage](#usage)
- [Development](#development)
- [License](#license)
- [Changelog](#changelog)
- [Support](#support)

## Installation

```bash
pip install .
```

## Usage

```python
import lium

with lium.Client(api_key="your-key") as client:
    pods = client.pods.list()
```

## Development

To set up the development environment, clone the repository and install the dependencies:

```bash
git clone https://github.com/your-username/lium-sdk.git
cd lium-sdk
pip install -e .
```

## License

This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.

## Changelog

All notable changes to this project will be documented in the [CHANGELOG.md](CHANGELOG.md) file.

## Support

If you have any issues or questions, please open an issue on GitHub.
