Metadata-Version: 2.1
Name: password-generator-module
Version: 0.1.2
Summary: Generate strong passwords quickly
Home-page: https://github.com/Mazzya/password-generator-module
Author: Mazzya
License: MIT
Description: # Password Generator Module
        An incredible module capable of generating very secure passwords. 
        This project has been adapted from the [original version](https://github.com/Mazzya/passwordgenerator), which is an interactive script.
        
        ![GitHub release (latest by date)](https://img.shields.io/github/v/release/mazzya/password-generator-module)
        ![GitHub](https://img.shields.io/github/license/mazzya/password-generator-module)
        [![Documentation Status](https://readthedocs.org/projects/password-generator-module/badge/?version=latest)](https://password-generator-module.readthedocs.io/en/latest/?badge=latest)
        
        Visit [Change Log](https://github.com/Frit-Apps/password-generator-module/blob/main/docs/CHANGELOG.md)
        
        ### How to install
        PyPi project : https://pypi.org/project/password-generator-module/
        
        To install the module, you must type the following command in the console :
        ```python
        pip install password-generator-module
        ```
        ### How to use
        To use the module, it is necessary to import it before :
        ```python
        from password_generator.password import Password
        ```
        ### How to generate a password
        ```python
        # Instantiate the password object
        p = Password()
        
        # Let's use the function generate_password () to generate a password of 12 characters
        password = p.generate_password(12)
        
        # Show the generated password
        print(password)
        ```
        ```
        > FYsY>uFnHnp^
        ```
        We are actively working on new features that will be available soon. Any contribution is welcome 😃
        
Keywords: python,password
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.0
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Version Control :: Git
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Operating System :: Unix
Description-Content-Type: text/markdown
