Metadata-Version: 2.4
Name: emailval
Version: 0.2.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Rust
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: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Summary: Blazingly fast email validator - 100-500x faster than alternatives
Keywords: email,validation,fast,rust,validator
Author-email: Your Name <your.email@example.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Changelog, https://github.com/aibrushcomputer/pyval/blob/main/CHANGELOG.md
Project-URL: Documentation, https://github.com/aibrushcomputer/pyval/docs
Project-URL: Homepage, https://github.com/aibrushcomputer/pyval
Project-URL: Issues, https://github.com/aibrushcomputer/pyval/issues
Project-URL: Repository, https://github.com/aibrushcomputer/pyval

# pyval

Blazingly fast email validation for Python, powered by Rust.

## Installation

```bash
pip install pyval
```

## Usage

```python
from pyval import validate_email, is_valid

# Fast boolean check
if is_valid("user@example.com"):
    print("Valid!")

# Full validation with details
result = validate_email("User@Example.COM")
print(result.normalized)  # "User@example.com"
```

## Performance

100-1000x faster than standard Python validators.

See [GitHub](https://github.com/aibrushcomputer/pyval) for full documentation.

