Metadata-Version: 2.4
Name: humanizedtext
Version: 0.1.0
Summary: Official Python SDK for HumanizedText API
Author: HumanizedText
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.31.0

# humanizedtext (Python)

Official Python SDK for HumanizedText API.

## Install

```bash
pip install humanizedtext
```

## Quick Start

```python
from humanizedtext import HumanizedTextClient

client = HumanizedTextClient(
    api_key="YOUR_API_KEY",
    base_url="https://api.humanizedtext.pro/api/v1",
)

result = client.humanize(
    text="This is a sample text.",
    tone="professional",
    ultra_humanize=True,
    keywords=["SEO", "AI writing"],
)
print(result)
```

## Methods

- `humanize(text, tone=None, ultra_humanize=False, keywords=None)`
- `grammar_fixer(text)`
- `content_rewriter(text)`
- `seo_blog_writer(topic)`
