Last updated:
0 purchases
passwordgeneratorspgmelvinsatheesan 0.0.1
# Secure password generator project
# Required optional arguments for the function
# The values of below arguments should be a string
# upper_case=”yes/no”
# lower_case=”yes/no”
# numeric_case=”yes/no”
# punctuations_case=”yes”
# The value of password length should be an integer
# password_length=12
# Default values
# upper_case=”yes”
# lower_case=”yes”
# numeric_case=”yes”
# punctuations_case=”yes”
# password_length=12
# Sample command line usage
# password_generator = SPG()
# my_password = password_generator.password_brew()
# print(my_password)
# We can use the below mentioned arguments as and when required along with the Class declaration.
# upper_case=”yes”
# lower_case=”yes”
# numeric_case=”yes”
# punctuations_case=”yes”
# password_length=12
# password_generator = SPG(upper_case=”no”,lower_case=”no”,numeric_case=”no”)
# my_password = password_generator.password_brew()
# print(my_password)
Change Log
0.0.1 (17/12/2022)
First Release
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.