Metadata-Version: 2.4
Name: microsaas-agent-api
Version: 3.0.0
Summary: Official Python SDK for the Micro-SaaS AI Agent Suite (8 Serverless AI APIs).
Author-email: Meanus Arcanus <meanusarcanus@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/meanusarcanus/microsaas_agent_api
Project-URL: Bug Tracker, https://github.com/meanusarcanus/microsaas_agent_api/issues
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0

# 🐍 microsaas-agent-api (Python SDK)

Official Python SDK for the **Micro-SaaS AI Agent Suite**.

Access 8 high-speed serverless AI APIs with 1 line of Python:
- **Review Sentiment & Feature Extractor** (`analyze_review`)
- **AI E-Commerce Copy & SEO Generator** (`generate_product_copy`)
- **Fake Review & Spam Detector** (`detect_fake_review`)
- **Support Ticket Auto-Triage Agent** (`classify_ticket`)
- **Product Specs Comparison Matrix** (`compare_specs`)
- **SmartScrape AI Web Scraping Extractor** (`scrape_and_extract`)
- **VeriMail Email & Disposable Check** (`verify_email`)
- **DocuParse Receipt & Invoice OCR** (`parse_document`)

---

## ⚡ Quickstart

```bash
pip install microsaas-agent-api
```

```python
from microsaas_agent_api import MicroSaaSClient

client = MicroSaaSClient(api_key="YOUR_RAPIDAPI_KEY")

# 1. Verify Email
res_email = client.verify_email("user@tempmail.org")
print("Disposable Email Detected:", res_email["is_disposable"])

# 2. Generate Product Copy
res_copy = client.generate_product_copy(
    product_name="UltraComfort Headphones",
    key_features=["Active Noise Cancellation", "40hr Battery Life"],
    target_tone="Luxury"
)
print("SEO Title:", res_copy["seo_title"])
```
