Metadata-Version: 2.3
Name: lmnt
Version: 2.6.0
Summary: The official Python library for the LMNT API
Project-URL: Homepage, https://github.com/lmnt-com/lmnt-python
Project-URL: Repository, https://github.com/lmnt-com/lmnt-python
Author-email: Lmnt <feedback@lmnt.com>
License: Apache-2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: anyio<5,>=3.5.0
Requires-Dist: distro<2,>=1.7.0
Requires-Dist: httpx<1,>=0.23.0
Requires-Dist: pydantic<3,>=2
Requires-Dist: sniffio
Requires-Dist: typing-extensions<5,>=4.10
Requires-Dist: websockets
Provides-Extra: aiohttp
Requires-Dist: aiohttp; extra == 'aiohttp'
Requires-Dist: httpx-aiohttp>=0.1.8; extra == 'aiohttp'
Description-Content-Type: text/markdown

# LMNT Python SDK

[![PyPI version](https://img.shields.io/pypi/v/lmnt.svg?label=pypi%20(stable))](https://pypi.org/project/lmnt/)

The LMNT Python SDK provides convenient access to the [LMNT API](https://docs.lmnt.com/api/) from Python applications.

## Documentation

Full documentation is available at [docs.lmnt.com/api/sdks/python](https://docs.lmnt.com/api/sdks/python).

## Installation

```sh
pip install lmnt
```

## Getting started

```python
import os
from lmnt import Lmnt

client = Lmnt(
    api_key=os.environ.get("LMNT_API_KEY"),  # This is the default and can be omitted
)

response = client.speech.generate(
    text="hello world.",
    voice="leah",
)
```

## Requirements

Python 3.10 or higher.

## Contributing

See [the contributing documentation](https://github.com/lmnt-com/lmnt-python/tree/master/./CONTRIBUTING.md).
