A simple yet powerful Python application that generates secure, memorable passwords using three memorable words.
It allows you to create, view, update, and delete passwords for your apps or websites — all stored locally in a JSON file.
Generate up to 432 unique passwords from just 3 words!
- Generate strong passwords using 3 memorable words.
- Store credentials (app name, username/email, notes) in a local JSON file.
- View all stored passwords in a clean, readable format.
- Update or delete passwords easily.
- Change your memorable words anytime to generate new combinations.
- Fully offline – no data ever leaves your device.
Password-Generator/ │ ├── password_generator.py # Main application script ├── passwords.json # Auto-created data file for storing credentials ├── README.md # Documentation ├── LICENSE # MIT License └── Preview.png # (Optional) Screenshot or demo image
- Ensure you have Python 3.13 installed on your system.
- Download or clone this repository:
git clone https://github.com/Sheikh-H/Password-Generator.git - Navigate into the project folder:
cd Password-Generator - Run the script:
python password_generator.py - Follow the on-screen instructions to set your memorable words and start generating passwords!
- At first launch, you’ll be prompted to enter 3 memorable words.
- These words are used in different shuffled combinations to create passwords.
- Each password also includes:
- A random number (0–9)
- A special character (!, @, #, $, %, ^, &, *)
- The app or website name you enter
- All information (app name, username, notes, password) is stored in a local
passwords.jsonfile.
App/Website name: Twitter Username/email: user@example.com Notes (optional): personal account Generated password: AppleSkyRiver4@Twitter
When running the script, you can choose from:
1. Generate password 2. View all passwords 3. Change memorable words 4. Update a password 5. Delete a password 6. Exit
- Add unique ID fields for easier management of password entries.
- Implement encryption for stored passwords.
- Include validation checks for password strength.
- Add a GUI interface for better user experience.
This project is licenced under the MIT Licence — see the LICENCE file for details.
MIT Licence Copyright (c) 2025 Sheikh Hussain Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
