Commandline Password Manager
- Generate password: while generating password we need to give options to consider special characters and digits as well. We also need to take length as an argument
def generate_password(length, include_special_characters=True, include_digits=True) - Refer Here for solution
References
- Random module can be used to generate random numbers or text Refer Here
- File operations in python Refer Here
- Building cli’s with argparse Refer Here
