Metadata-Version: 2.4
Name: foxcite-sdk
Version: 1.0.0
Summary: Official Python SDK for Foxcite AVS and AEO Monitoring platform
Author: Foxcite
License: MIT
Project-URL: Homepage, https://github.com/foxciteai
Project-URL: Repository, https://github.com/foxciteai
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: httpx>=0.20.0

# Foxcite Python SDK

The official Python client library for the Foxcite API. Exposes fully typed Pydantic v2 schemas and supports both synchronous and asynchronous usage.

## Installation

```bash
pip install foxcite-sdk
```

## Quick Start

```python
from foxcite import Foxcite

client = Foxcite(api_key="seomd_live_...")

# List brand workspaces
brands = client.brands.list()
print("Brands:", [b.name for b in brands])

# Execute a quick audit
audit = client.audits.quick_audit(
    name="My Brand",
    domain="mybrand.com",
    niche="SaaS Analytics",
    query="best saas analytics tools"
)
print("Quick Audit Scan ID:", audit.scan_id)
```
