Metadata-Version: 2.1
Name: tr0nz0d
Version: 0.0.7
Summary: Ferramentas e métodos úteis
Home-page: https://github.com/TR0NZ0D
Author: Gabriel Menezes de Antonio
Author-email: TR0NZ0D@protonmail.com
License: MIT
Description: <h1>TR0NZ0D Lib</h1>
        <hr>
        
        <h3>What is?</h3>
        <p>TR0NZ0D Lib is a library created in python to facilitate the use of some tools. The project is still under development, improvements and new features will be added. The main language of the project is portuguese, translations will be added in the future.</p>
        
        <h3>Brief Documentation</h3>
        
        <h4>Introduction</h4>
        <p>Installing the library can be done by running the<code>pip install tr0nz0d</code>command on a terminal that has Python [3.8.x] installed.</p>
        
        <h4>Methods</h4>
        <h5><code>tr0nz0d.tools</code></h5>
        
        - CPF
        
            <small>Tools to generate, format and validate a cpf.</small>
        
            * <small>``cpf.gerar()`` - Generates a mathematically valid cpf.<br>**Returns**
                - The plain cpf.</small>
        
            * <small>``cpf.format(cpf: str)`` - Formats the cpf with the divisions.<br>**Returns**
                - The formatted cpf.</small>
        
            * <small>``cpf.gerar_formatado()`` - Generates a mathematically valid cpf.<br>**Returns**
                - The formatted cpf.</small>
        
            * <small>``cpf.validar()`` - Validates the mathematical authenticity of the CPF.<br>**Returns**
                - True [valid] or False [invalid]</small>
        
        - CNPJ
        
            <small>Tools to generate, format and validate a cnpj.</small>
        
            * <small>``cnpj.gerar()`` - Generates a mathematically valid cnpj.<br>**Returns**
                - The plain text.</small>
        
            * <small>``cnpj.formatar(cnpj: str)`` - Formats the cnpj with the divisions.<br>**Returns**
                - The formatted cnpj.</small>
        
            * <small>``cnpj.gerar_formatado()`` - Generates a mathematically valid cnpj.<br>**Returns**
                - The formatted cnpj.</small>
        
            * <small>``cnpj.validar()`` - Validates the mathematical authenticity of the cnpj.<br>**Returns**
                - True [valid] or False [invalid]</small>
        
        - TEXT
            <small>Tools to encapsulate and print text within a character set.</small>
        
            * <small>``text.line_print(text: str, char_tl: str, char_md: str, char_tr: str, char_sides: str, char_bl: str, char_br: str)`` - Encapsulates a single-line text within the specified characters and print it.</small>
        
            * <small>``text.text_print(text: str, char_tl: str, char_md: str, char_tr: str, char_sides: str, char_bl: str, char_br: str)`` - Encapsulates multiline text within characters specified and print it.</small>
        
        <h5><code>tr0nz0d.security</code></h5>
        
        - CRIPTOGRAFIA
            <small>Tools for encrypting and decrypting text.</small>
        
            * <small>``criptografia.criptografar(text: str)`` - Encrypts past text.<br>**Returns**
                - List containing the encrypted text and the key.</small>
        
            * <small>``criptografia.descriptografar(text: bytes)`` - Decrypts the text passed.<br>**Returns**
                - Decrypted literal text.</small>
        
            * <small>``criptografia.descriptografar_com_chave(text: bytes, custom_key: bytes)`` - Decrypts the text passed using the specific key.<br>**Returns**
                - Decrypted literal text.</small>
        
            * <small>``criptografia.get_key()`` - Returns the key used to encrypt the text.<br>**Returns**
                - Encryption key.</small>
        
        - PSWD
        
            <small>Tools for creating complex passwords and codes.</small>
        
            * <small>``pass.gerar(lenght: int)`` - Creates a complex code of determined length.<br>**Returns**
                - Code created in literal text.</small>
        
        
        <hr>
        
        <h1> Change Log </h1>
        <hr>
        
        <h5> 0.0.7 (17/05/2021) </h5>
        
        <h4> NEW DEPENDENCY </h4>
        - cryptography
        
        <h4> NEW TOOLS </h4>
        - Tools for encryption management.
        - Tool for creating complex codes and passwords.
        - Tool for encapsulating texts with special characters.
        
        <h4> UPDATES </h4>
        - Description file extension changed to .md
        - Changed the description of the library
        - Updated code documentation
        - Created a brief documentation in the description of the library (Official documentation still under development)
        
        <hr>
Keywords: tronzod
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
