-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"Updated version number to 0.2.19 and added docstring to __init__.py"
- Loading branch information
Showing
2 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,23 @@ | ||
# pylint: disable=missing-module-docstring | ||
from .main import Rut, RutDigitoVerificador, RutInvalidoError # noqa: F401 | ||
""" | ||
Rutificador: Una biblioteca Python para validar y formatear RUTs chilenos. | ||
Este módulo proporciona herramientas para trabajar con RUTs chilenos (Rol Único Tributario), | ||
incluyendo validación, formateo y verificación de dígitos. | ||
Clases: | ||
Rut: Representa un RUT chileno, con métodos para validación y formateo. | ||
RutDigitoVerificador: Calcula y representa el dígito verificador de un RUT chileno. | ||
RutInvalidoError: Excepción personalizada para errores de RUT inválido. | ||
Versión: 0.2.19 | ||
Autor: Carlos Ortega González | ||
Licencia: MIT | ||
""" | ||
|
||
__version__ = "0.2.19" | ||
__author__ = "Carlos Ortega González" | ||
__license__ = "MIT" | ||
|
||
from .main import Rut, RutDigitoVerificador, RutInvalidoError | ||
|
||
__all__ = ["Rut", "RutDigitoVerificador", "RutInvalidoError"] |