Metadata-Version: 2.4
Name: adtr_client
Version: 0.0.1
Summary: A simple Python client for the [Adtr Translation API]
Author-email: pi11 <webii@pm.me>
License: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
                            Version 2, December 2004
        
         Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
        
         Everyone is permitted to copy and distribute verbatim or modified
         copies of this license document, and changing it is allowed as long
         as the name is changed.
        
                    DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
           TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
        
          0. You just DO WHAT THE FUCK YOU WANT TO.
        
        
Project-URL: Homepage, https://github.com/pi11/adtr_client
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Adtr Translation Client

A simple Python client for the [Adtr Translation API](https://adtr.webnova.one/docs).

## Installation

Install the client using pip:

```bash
pip install adtr_client
```

## Usage

Use the client to translate text via the Adtr Translation API.

Example:

```python
from adtr_client.translate import translate

result = translate(
    user_id="your_user_id",
    api_key="your_api_key",
    text="text to translate",
    target_language="target_language"
)

print(result)
```

## Configuration

1. Obtain your `user_id` and `api_key` from the rkn.name service
2. Replace `"your_user_id"`, `"your_api_key"`, and other parameters in the example above with your credentials and desired values.

```

