Metadata-Version: 2.1
Name: cpfpy
Version: 0.0.1
Summary: This Python module validates and formats CPF numbers, ensuring they are correct and follow the standard Brazilian format.
Home-page: https://github.com/adryansf/cpfpy
Author: Adryan Freitas
Author-email: adryansfreitas@gmail.com
Requires-Python: >=3.0
Description-Content-Type: text/markdown

# CPFPY

This Python module provides tools for validating and formatting CPF numbers.

## Installation

To install, you can use pip:

```bash
pip install cpfpy
```

## Usage

### Validation

```python
from cpfpy import validate_cpf

cpf = "123.456.789-09"
if validate_cpf(cpf):
    print("Valid CPF!")
else:
    print("Invalid CPF.")
```

### Formatting

```python
from cpfpy import format_cpf

cpf = "12345678909"
formatted_cpf = format_cpf(cpf)
print(formatted_cpf)  # Output: 123.456.789-09
```

## License

[MIT](https://choosealicense.com/licenses/mit/)
