Metadata-Version: 2.1
Name: cpf-and-cnpj-generator
Version: 0.0.1
Summary: This pypi package provides Python functions to generate valid Brazilian CPF (Cadastro de Pessoas Físicas) and CNPJ (Cadastro Nacional da Pessoa Jurídica) numbers.
Author: Gabriel Logan
Project-URL: Homepage, https://gabriel-logan.github.io/Gerador-CPF-e-CNPJ-valido
Project-URL: Bug Tracker, https://github.com/gabriel-logan/Gerador-CPF-e-CNPJ-valido/tree/main/packages/python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.1
Description-Content-Type: text/markdown
License-File: LICENSE

# cpf-and-cnpj-generator

[![PyPI version](https://badge.fury.io/py/cpf-and-cnpj-generator.svg)](https://badge.fury.io/py/cpf-and-cnpj-generator)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![PyPI downloads](https://img.shields.io/pypi/dm/cpf-and-cnpj-generator.svg?style=flat-square)](https://pypistats.org/packages/cpf-and-cnpj-generator)

Feel free to find bugs and report them to me. Your feedback is highly appreciated. Hugs from Gabriel Logan!

### Installation

```bash
pip install cpf-and-cnpj-generator
```

# Avaliable Functions

- **generate_cnpj**: CNPJ generation.
- **generate_cpf**: CPF generation.

## Usage

Here is an example of how to use the functions in this package:

```python
from cpf_and_cnpj_generator import generate_cnpj, generate_cpf
```

```python

# Generate a valid CNPJ
cnpj = generate_cnpj()
print(cnpj)

# Generate a valid CPF
cpf = generate_cpf()
print(cpf)

```

Feel free to explore the various functions and experiment with different inputs to understand their behavior. If you encounter any issues or have suggestions, don't hesitate to reach out to me. Your feedback is valuable and helps improve the package. Happy coding!

# By - Gabriel Logan
