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.
Clone repository with command:
git clone https://github.com/IHappyPlant/PasswordGenerator.git
Then step into cloned repo with command:
cd PasswordGenerator
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
In MS Windows you may install package into Python in another way:
-
python3 setup.py bdist_msi
-
cd dist
- Run built installer to install application.
Windows Defender may block .msi-installer, because it doesn't have signed certificate. Just ignore it.
You also may build executable file for your OS with PyInstaller.
For this, you need to do next steps:
-
pip3 install -r requirements.txt pyinstaller
-
pyinstaller password_generator/__main__.py
You can also download created executable files for MS Windows and Debian/Ubuntu from releases.