Metadata-Version: 2.4
Name: regex-number-phone
Version: 0.2.0
Summary: Phone number validation library, Cambodia first
Author-email: Your Name <your@email.com>
License: MIT
Keywords: phone,cambodia,validation,regex
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

# regex-number-phone

Phone number regex validator and formatter.  
**Cambodia** validation supported.

## Install

## Usage

```python
from regex_number_phone import is_valid_cambodia, format_to_international

print(is_valid_cambodia("012345678"))           # True
print(format_to_international("012345678"))     # +85512345678
print(format_to_international("+85570888888"))  # +85570888888
