Metadata-Version: 2.4
Name: fraoula-data-audit
Version: 0.1.0
Summary: Official Python client for Fraoula Data Auditor: sub-350ms RAM-only schema validation and payload anomaly telemetry.
Author-email: Fraoula Engineering Team <info@fraoula.co>
License: Apache-2.0
Project-URL: Homepage, https://www.fraoula.co
Project-URL: Documentation, https://www.fraoula.co/products/data-auditor/
Project-URL: Developer Portal, https://www.fraoula.co/developers
Project-URL: Repository, https://github.com/arkajit2/fraoula_web
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28.0

# Fraoula Data Auditor Python SDK

Official Python client for [Fraoula Data Auditor](https://www.fraoula.co/products/data-auditor/).

Fraoula Data Auditor provides sub-350ms RAM-only payload anomaly detection and schema drift validation for enterprise data pipelines in Fintech and Healthtech.

## Installation

```bash
pip install fraoula-data-audit
```

## Quickstart

```python
from fraoula_data_audit import DataAuditorClient

# Initialize client with your Fraoula endpoint
client = DataAuditorClient(api_key="YOUR_API_KEY")

# Validate a batch streaming payload
payload = {
    "account_id": "ACC-99201",
    "transaction_amount": 1450.50,
    "currency": "USD",
    "timestamp": "2026-09-13T12:00:00Z"
}

result = client.audit_payload(schema_name="fintech_transaction_v1", payload=payload)

print(f"Validation Status: {result.status}")
print(f"Latency: {result.latency_ms}ms")
print(f"Schema Drift Detected: {result.has_drift}")
```

## Security & Compliance

Fraoula Data Auditor processes data strictly in volatile memory. Raw customer payloads are never written to disk, ensuring full compliance with HIPAA, SOC 2, and GDPR standards.

- Website: [https://www.fraoula.co](https://www.fraoula.co)
- Documentation: [https://www.fraoula.co/products/data-auditor/](https://www.fraoula.co/products/data-auditor/)
- Developer Portal: [https://www.fraoula.co/developers](https://www.fraoula.co/developers)
