Metadata-Version: 2.4
Name: ryterpro
Version: 0.1.0
Summary: Official Python SDK for the Ryter Pro API
Author-email: Ryter Pro <apiihub33@gmail.com>
License: MIT
Project-URL: Homepage, https://www.ryter.pro/
Project-URL: Documentation, https://www.ryter.pro/docs/text-humanize
Project-URL: Pricing, https://www.ryter.pro/pricing
Project-URL: Repository, https://github.com/apiihub33-cyber/ryterpro-python
Project-URL: Issues, https://github.com/apiihub33-cyber/ryterpro-python/issues
Keywords: ryter pro,writing assistant,text rewriting,AI writing,API client
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.31.0
Dynamic: license-file

# Ryter Pro Python SDK

The official Python client for the [Ryter Pro](https://www.ryter.pro/) API.

Ryter Pro provides AI-powered writing and text-processing tools through a simple API. This package allows Python developers to integrate Ryter Pro into websites, applications, and automated workflows.

## Installation

```bash
pip install ryterpro
```

## Quick Start

```python
from ryterpro import RyterPro

client = RyterPro(api_key="YOUR_API_KEY")

result = client.humanize(
    text="Your text goes here."
)

print(result)
```

## API Key

Create an account and obtain your API credentials from the [Ryter Pro account page](https://www.ryter.pro/account).

## Documentation

Read the complete API documentation:

* [Ryter Pro API Documentation](https://www.ryter.pro/docs/text-humanize)
* [Ryter Pro Pricing](https://www.ryter.pro/pricing)

## Requirements

* Python 3.9 or later
* A valid Ryter Pro API key

## License

This project is licensed under the MIT License.
