pass-gen

Generate random password


Keywords
pass-gen, password-generator
License
MIT
Install
pip install pass-gen==0.0.5

Documentation

pass-gen

A command line interface (and Python library) for generating passwords

Installation

$ pip install pass-gen

Command line usage

$ pass_gen

by default password length is 12

$ pass_gen -l 10

or, you can set the length. This value must be between 8-16

Python usage

import pass_gen

# Set password length to 10. Default 12
password = pass_gen.generate(10)

Contributors

License

pass_gen is licensed under the MIT license. See the license file for details.