Metadata-Version: 2.4
Name: tokenslim-client
Version: 0.4.0
Summary: TokenSlim REST client SDK for Python (sync + async)
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# tokenslim-client

TokenSlim REST client SDK for Python (supports both synchronous and asynchronous operations).

## Installation

```bash
pip install tokenslim-client
```

## Usage

```python
from tokenslim_client import TokenSlimClient

client = TokenSlimClient(host="127.0.0.1", port=10086)
result = client.compress("Your long log message...")
print(result)
```
