Metadata-Version: 2.4
Name: fatihai-email-verify
Version: 1.0.0
Summary: Fast and accurate email verification API client
Home-page: https://fatihai.app/tools/email-verify
Author: FatihAI
Author-email: FatihAI <support@fatihai.app>
License: MIT
Project-URL: Homepage, https://fatihai.app
Project-URL: Documentation, https://fatihai.app/docs
Project-URL: Repository, https://github.com/fatihdagustu20-hub/python-email-verify-sdk
Keywords: email,verification,validation,api
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# FatihAI Email Verification

Fast and accurate email verification API client for Python.

[![PyPI](https://img.shields.io/pypi/v/fatihai-email-verify)](https://pypi.org/project/fatihai-email-verify/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Features

- ✅ Real-time validation (<100ms)
- ✅ Syntax, domain, MX checks
- ✅ Disposable email detection
- ✅ 99.9% accuracy
- ✅ Type hints included

## Installation

```bash
pip install fatihai-email-verify
```

## Quick Start

```python
from fatihai_email_verify import FatihAIEmailVerify

client = FatihAIEmailVerify('your_api_key')

# Verify single email
result = client.verify('test@example.com')
print(result)
# {'valid': True, 'email': '...', 'checks': {'syntax': True, 'domain': True, 'mx': True, 'disposable': False}}

# Simple boolean check
is_valid = client.is_valid('test@example.com')
print(is_valid)  # True or False

# Check if disposable
is_disposable = client.is_disposable('temp@mailinator.com')
print(is_disposable)  # True

# Bulk verification
emails = ['a@example.com', 'b@example.com']
results = client.verify_bulk(emails)
```

## Pricing

| Plan | Verifications/month | Price |
|------|---------------------|-------|
| Starter | 1,000 | $29/mo |
| Growth | 10,000 | $59/mo |
| Business | 50,000 | $99/mo |

## Get API Key

Sign up at [fatihai.app](https://fatihai.app/register)

## License

MIT
