/pass-gen

Password generator

Primary LanguagePythonMIT LicenseMIT

pass-gen

GitHub release (latest SemVer including pre-releases)

Intro

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.