Logo was taken and modified from here: Lock icons created by Freepik - Flaticon
Password Manager that's offline and left only on the user's machine. It is saved into an encrypted file and can only be accessed during use of the application.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
This project is an offline password manager that uses Python Tkinter, Cryptography, and Openpyxl.
This doesn't rely on the internet and stores on the local user's machine in their home directory. The user's credentials are stored into an encrypted file that can only be accessed during the use of the application.
To get a local copy up and running follow these simple example steps.
Install Python 3.9 which should include pip.
- pip
pip install cryptography pip install openpyxl
- Clone the repo
git clone https://github.com/CrystlBearer/MyPass.git
All the files are stored in ~/MyPass. When running the application for the first time, the application will ask the user to set their master password.
Afterwards, the main window application will appear to allow the user to add their user credentials. When the user exits, the application will encrypt the user's credential files so no one else can access them. The next time the user uses the application the user will have to enter their master password to access their list of credentials.
To create a windows executable with the python script following the following steps:
- Download the source code and extract the source code if zipped.
-
pip install auto-py-to-exe
-
auto-py-to-exe.exe
- Browse for mypass.py as the script location from the downloaded source code.
- Click on "One Directory" for the Onefile section.
- Click on "Window Based" for the Console Window section.
- Click on "Icon" and search for the icon in the resources/ folder from the downloaded source code.
- Click on Additional Files to expand and click the "Add Folder" button then select the resources/ folder from the downloaded source code.
- Click on "CONVERT .Py to .EXE" to begin creating the executable.
- Go to the folder and the end of the output and find the location of the newly built executable. Feel free to move the folder anywhere.
- Create shortcut to the mypass.exe found in your folder and drag to the desktop.
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt for more information.
Vivian Hoang
Project Link: https://github.com/CrystlBearer/MyPass