A simple Python program for generating pseudo-random passwords and passphrases. The GUI is built using TKinter, the standard GUI library for Python.
Warning
Do not use for actual passwords!
While the password generator uses the Electronic Frontier Foundation long wordlist for generating passphrases, Python's random
module generates less
randomness then using actual dice.
$ pip install -r requirements.txt
$ python3 tkPassGenerator.py
On Linux, xclip
or another interface to clipboard selection must be installed for the copy function to work.
Tip
Look into EFF's guide on dice Dice-Generated Passphrases here if you want to generate secure passphrases!