IHappyPlant / PasswordGenerator

Simple password generator with GUI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Password generator

It is a simple password generator, created with Python and PyQT5.
It is capable to generate passwords with required length and save them into files.

Password generator main window

Navigation

Installation

Clone repository with command:

git clone https://github.com/IHappyPlant/PasswordGenerator.git

Then step into cloned repo with command:

cd PasswordGenerator

Python

To install application directly into Python, run command:

python3 setup.py install

Installed package will be named PasswordGenerator
After installation, you can run it using command:

python3 -m PasswordGenerator

Windows

In MS Windows you may install package into Python in another way:

  1.  python3 setup.py bdist_msi
  2.  cd dist
  3. Run built installer to install application.

Notes

Windows Defender may block .msi-installer, because it doesn't have signed certificate. Just ignore it.

PyInstaller

You also may build executable file for your OS with PyInstaller.
For this, you need to do next steps:

  1. pip3 install -r requirements.txt pyinstaller
  2. pyinstaller password_generator/__main__.py

Releases

You can also download created executable files for MS Windows and Debian/Ubuntu from releases.

About

Simple password generator with GUI

License:MIT License


Languages

Language:Python 100.0%