Metadata-Version: 2.4
Name: validpay
Version: 0.1.0
Summary: Official Python SDK for ValidPay — AI-powered document verification platform
Project-URL: Homepage, https://validpay.io
Project-URL: Documentation, https://validpay.io/docs
Project-URL: Repository, https://github.com/ValidPay-io/validpay-python-sdk
Project-URL: Issues, https://github.com/ValidPay-io/validpay-python-sdk/issues
Author-email: MiLu Technologies LLC <mike@validpay.io>
License-Expression: MIT
License-File: LICENSE
Keywords: check-verification,document-verification,fintech,qr-code,validpay
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.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Security
Requires-Python: >=3.8
Requires-Dist: requests>=2.25.0
Description-Content-Type: text/markdown

# ValidPay Python SDK

Official Python SDK for [ValidPay](https://validpay.io) — AI-powered document verification platform.

> **Private Beta** — This SDK is currently in private beta. Contact mike@validpay.io for API access.

## Installation

```bash
pip install validpay
```

## Quick Start

```python
from validpay import ValidPayClient

client = ValidPayClient(api_key="your-api-key")

# Verify a document image
result = client.verify_document(image_path="check.png")
print(result["status"])  # "authentic" or "unverified"

# Decode a ValidPay QR code
decoded = client.decode_qr(qr_data="validpay://...")
print(decoded["document_type"])
```

## Features

- Document verification via image upload
- QR code decoding and validation
- Check authenticity verification
- Patent-pending AI-powered analysis

## Requirements

- Python 3.8+
- Active ValidPay API key

## Links

- Website: https://validpay.io
- Documentation: https://validpay.io/docs
- Support: mike@validpay.io

## License

MIT — Copyright (c) 2026 MiLu Technologies LLC
