Utility function to generate valid CNPJ (Brazilian employer ID)
Project description
Utility function/class to generate valid CNPJ (Brazilian employer ID).
Python Support
| Passing ✔ | Passing ✔ | Passing ✔ | Passing ✔ | Passing ✔ |
Installation
$ pip install cnpj-gen
Import
# Using class-based resource
from cnpj_gen import CnpjGenerator
# Or using function-based one
from cnpj_gen import cnpj_gen
Usage
Object-Oriented Usage
generator = CnpjGenerator()
cnpj = generator.generate() # returns '65453043000178'
# With options
cnpj = generator.generate(
format=True
) # returns '65.453.043/0001-78'
cnpj = generator.generate(
prefix='45623767'
) # returns '45623767000296'
cnpj = generator.generate(
prefix='456237670002',
format=True
) # returns '45.623.767/0002-96'
The options can be provided to the constructor or the generate() method. If passed to the constructor, the options will be attached to the CnpjGenerator instance. When passed to the generate() method, it only applies the options to that specific call.
generator = CnpjGenerator(format=True)
cnpj1 = generator.generate() # '65.453.043/0001-78' (uses instance options)
cnpj2 = generator.generate(format=False) # '65453043000178' (overrides instance options)
cnpj3 = generator.generate() # '12.345.678/0001-95' (uses instance options again)
Functional programming
The helper function cnpj_gen() is just a functional abstraction. Internally it creates an instance of CnpjGenerator and calls the generate() method right away.
cnpj = cnpj_gen() # returns '65453043000178'
cnpj = cnpj_gen(format=True) # returns '65.453.043/0001-78'
cnpj = cnpj_gen(prefix='45623767') # returns '45623767000296'
cnpj = cnpj_gen(prefix='456237670002', format=True) # returns '45.623.767/0002-96'
Generator Options
| Parameter | Type | Default | Description |
|---|---|---|---|
format |
bool | None |
False |
Whether to format the output with dots, slash, and dash |
prefix |
str | None |
'' |
If you have CNPJ initials and want to complete it with valid digits. The string provided must contain between 0 and 12 digits. The branch ID (characters 8 to 11) cannot be "0000". |
Contribution & Support
We welcome contributions! Please see our Contributing Guidelines for details. But if you find this project helpful, please consider:
- ⭐ Starring the repository
- 🤝 Contributing to the codebase
- 💡 Suggesting new features
- 🐛 Reporting bugs
License
This project is licensed under the MIT License - see the LICENSE file for details.
Changelog
See CHANGELOG for a list of changes and version history.
Made with ❤️ by Lacus Solutions
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cnpj_gen-1.0.2.tar.gz.
File metadata
- Download URL: cnpj_gen-1.0.2.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d62cd9d7314113061ac7097a280a40f06a40b4bef8581aac01d57a71eb19f63a
|
|
| MD5 |
22f579dd3d6026d274d012fcb6dbb6b9
|
|
| BLAKE2b-256 |
5cf60145e61d3034379cdd0746e2205865b625e93401158ffc5848b9fad12f78
|
File details
Details for the file cnpj_gen-1.0.2-py3-none-any.whl.
File metadata
- Download URL: cnpj_gen-1.0.2-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d025fc9aae6dff80baa4e1d6b4be6f4ccb321457140f1a16be57712faba14fd
|
|
| MD5 |
98ed096d5688f1860216b546957f2e92
|
|
| BLAKE2b-256 |
fc5c1c7a142df837ee2b16e718fc9919ffff307ac551179a58c33b54eb0a5844
|