Metadata-Version: 2.4
Name: rezex
Version: 0.1.0
Summary: A handy regex-based validation toolkit (emails, phone numbers, and more).
Author-email: Anwar Hosen <anwarhossene@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/code-anwarhosen/rezex
Project-URL: Issues, https://github.com/code-anwarhosen/rezex/issues
Keywords: regex,validation,email,phone,web
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

# rezex validator

A small Python package for validating:

- Email addresses
- Bangladeshi mobile phone numbers

## Usage

```python
from rezex import is_valid_email, is_valid_bd_number

print(is_valid_email("user@example.com"))          # True
print(is_valid_bd_number("+8801712345678"))       # True
