Metadata-Version: 2.1
Name: RandomPassword
Version: 1.0
Summary: A simple python library to generate customizable random passwords in python!
Home-page: https://github.com/Sid72020123/RandomPassword
Author: Siddhesh Chavan
Author-email: siddheshchavan2020@gmail.com
License: MIT
Description: # RandomPassword
        
        A simple python library to generate customizable random passwords in python!
        
        ### Installation:
        
        ```pip install RandomPassword```
        
        ### Import:
        
        ```python 
        import RandomPassword
        ```
        
        ### Making a simple password:
        
        ```python
        import RandomPassword
        
        a = RandomPassword.RandomPassword()
        password = a.generate_random_password(length=10)
        print(password)
        ```
        
        ### Customizing your password:
        
        The ```generate_random_password()``` has some parameters to customize the password!
        
        * ```include_upper_case_alphabets``` ---> Set to 'True' if you want uppercase alphabets in your password
        * ```include_lower_case_alphabets``` ---> Set to 'True' if you want lowercase alphabets in your password
        * ```include_special_characters``` ---> Set to 'True' if you want special characters in your password
        * ```include_numbers``` ---> Set to 'True' if you want digits in your password
        
        ### Thank you!
Keywords: random-passsword password random
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
