Generate pronounceable passwords in Python.
This program uses statistics on the frequency of three-letter sequences in English to generate passwords.
Based off gpw for javascript: https://www.multicians.org/thvv/gpw.html
$ pip install genpw
>>> from genpw import pronounceable_passwd
>>> pronounceable_passwd.__doc__
' Return a password of length in range [3, max(pwl, 3)]. '
>>> password_length = 10
>>> pronounceable_passwd(password_length)
'roleannexa'
>>> pronounceable_passwd(7)
'listabo'