A python-made random password generator. I made this to experiment with PySimpleGui
and pyinstaller
.
- Create randomly generated passwords!
- Up to 32 characters in length!
- Choose to include numbers, special characters, upper- and lowercase characters!
I've compiled the scripts to a single windows executable (.exe) file, which can be directly run on a windows machine. See the releases for the file.
To run this with python, I recommend using a conda environment. For most users, the following code should be enough:
# Optional: create a new conda environment
conda create --name passGen python=3.8 -y
conda activate passGen
# Install the dependencies
conda install numpy -y
conda install pysimplegui -c conda-forge
# Run the app
python ui.py
Alternatively, the conda environment can be installed using the requirements.yaml
file.
# Create a new conda environment
conda env create -f requirements.yaml
conda activate passGen
# Run the app
python ui.py