Skip to content

mbledkowski/password_generator

Repository files navigation

Password generator by @mmble

Password generator written in Python

Screenshots:

Command Line Interface version:

CLI screenshot

Graphical User Interface version:

GUI screenshot

Commands for generating executables:

Command Line Interface version:

cd "./Command Line Interface Version"
pyinstaller --noconfirm --onefile --console --icon "./icon.ico" --name "Password generator CLI" --ascii  "./main.py"

Graphical User Interface version:

cd "./Graphical User Interface Version"
pyinstaller --noconfirm --onefile --windowed --icon "./icon.ico" --name "Password generator GUI" --ascii --add-data "./icon.ico;."  "./main-pyinstaller_version.py"

Technologies:

  • Python
    • "random" and "string" build-in libraries
  • TkInter (in GUI version)
  • pyinstaller (and its GUI interface - auto-py-to-exe)