Metadata-Version: 2.4
Name: toolkitbrazil
Version: 0.0.1
Summary: A Python module with a collection of useful tools for Brazilians (and anyone else who wants to use it)
Author-email: Ricardo Colombani <ricardo.colombani@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/coloric/toolkitbrazil
Project-URL: Documentation, https://github.com/coloric/toolkitbrazil/docs
Project-URL: Repository, https://github.com/coloric/toolkitbrazil
Project-URL: Bug Tracker, https://github.com/coloric/toolkitbrazil/issues
Project-URL: Changelog, https://github.com/coloric/toolkitbrazil/CHANGELOG.md
Keywords: library,utility,utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown

![PyPI - License](https://img.shields.io/pypi/l/toolkitbrazil)
![PyPI - Version](https://img.shields.io/pypi/v/toolkitbrazil)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/toolkitbrazil)
![](https://img.shields.io/badge/Latest%20Release-Oct%2012,%202025-blue)
[![Github](https://img.shields.io/badge/github-toolkit--brazil-blue)](https://github.com/coloric/toolkitbrazil)
<br>
![Pepy Total Downloads](https://img.shields.io/pepy/dt/toolkitbrazil)
![PyPI - Downloads](https://img.shields.io/pypi/dd/toolkitbrazil)
![PyPI - Downloads](https://img.shields.io/pypi/dw/toolkitbrazil)
![PyPI - Downloads](https://img.shields.io/pypi/dm/toolkitbrazil)


# Introduction

A Python module with a collection of useful tools for Brazilians (and anyone else who wants to use it). <br>
Take a look at [CHANGELOG.md](https://github.com/coloric/toolkitbrazil/CHANGELOG.md) for the changes.


# Brief History
I started studying Python recently and wanted to do something that would be useful. Enjoy `toolkitbrazil`.


# Overview

Here's a quick overview of what the library has at the moment:

- Random generation of CPF and CNPJ numbers
- CPF and CNPJ validation
- Check which state a DDD belongs to
- Returns the capital of a state
- String cleaner

## Usage

```python
import toolkitbrazil as tkb

# Remove diacritics, non alpha chars, multiple spaces and convert string to upper case
print(tkb.strClean('A héalt#hy  dìet is    esse&ntiãl  for    go(od heàlth and    nutrition  '))
# Return: 'A HEALTHY DIET IS ESSENTIAL FOR GOOD HEALTH AND NUTRITION'

# Generate a random CPF
print(tkb.rngCPF())
# Sample return: 75269169703

# Generate a random CPF of specific UF
print(tkb.rngCPF('SP'))
# Sample return: 27039729890

# Validate a CPF
print(tkb.valCPF(75269169703))
# Return: True

# Generate a random CNPJ of the headquarters (branch 0001)
print(tkb.rngCNPJ())
# Sample return: 86978319000101

# Generate a random CNPJ of a branch (any branch)
print(tkb.rngCNPJfiliais())
# Sample return: 94318840326682

# Validate a CNPJ
print(tkb.valCNPJ(86978319000101))
# Return: True

# Check the UF of the CPF
print(tkb.ufCPF(75269169703))
# Return: ['ES', 'RJ']

# Check the UF of the DDD or phone number (using first two digits of any number)
print(tkb.ufDDD(61))
# Return: ['DF', 'GO']
print(tkb.ufDDD(11987654321))
# Return: ['SP']

# Check the capital of a UF
print(tkb.ufCapital('SP'))
# Return ['SAO PAULO', 'SP']

# Validate a CPF and check its UF
print(tkb.valCPFuf(75269169703, 'SP'))
# Return False (it's a valid CPF but from another UF)
```

## Authors

Ricardo Colombani - [@coloric](https://www.github.com/coloric)


## How to install

$ pip install toolkitbrazil


## License

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