Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/araujo88/petitepass
A lightweight password manager coded with Python using SQLCipher for SQLite database encryption and PyQt.
https://github.com/araujo88/petitepass
bcrypt password-generator password-manager pyqt pyqt5 python python3 qt qt5 sqlcipher sqlite sqlite3
Last synced: about 1 month ago
JSON representation
A lightweight password manager coded with Python using SQLCipher for SQLite database encryption and PyQt.
- Host: GitHub
- URL: https://github.com/araujo88/petitepass
- Owner: araujo88
- License: gpl-3.0
- Created: 2022-01-03T22:41:43.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-02T07:08:11.000Z (10 months ago)
- Last Synced: 2024-04-02T08:29:21.152Z (10 months ago)
- Topics: bcrypt, password-generator, password-manager, pyqt, pyqt5, python, python3, qt, qt5, sqlcipher, sqlite, sqlite3
- Language: Python
- Homepage:
- Size: 174 MB
- Stars: 20
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PetitePass
A simple and secure lightweight password manager coded with Python using SQLCipher for SQLite database encryption and PyQt. This application allows you to securely store, retrieve, and manage your passwords.
## Features
- **Secure Storage:** Passwords are stored in an encrypted database.
- **Password Generator:** Generate strong, random passwords.
- **Password Strength Check:** Evaluate the security level of your passwords.
- **Intuitive GUI:** Easy to use graphical interface.## Screenshot
![screenshot](Screenshot.png)
## Requirements
Python 3.10
xsel## Installing from source
To install and run the password manager on your system, follow these steps:
1. **Clone the Repository:**
```bash
git clone https://github.com/araujo88/PetitePass.git
cd PetitePass
```2. **Install Dependencies:**
Ensure you have Python installed, and then install the required packages:```bash
make setup
make install-requirements
```3. **Build the application:**
```bash
make build
```4. **Install the application:**
```bash
make install
```## Usage
At first run, the program will request a password creation for managing the password database. This password must satisfy certain requirements and be entered twice. THIS PASSWORD CANNOT BE RECOVERED WITHOUT RESETTING THE DATABASE.
When the password is created, two files should have been created. One stores the password hash (5f4dcc3b5aa765d61d8327deb882cf99) and the other file (48cccca3bab2ad18832233ee8dff1b0b.db) stores the password encrypted database itself. IF THESE FILES ARE DELETED, ALL STORED DATA WILL BE LOST. The user can upload these files, along with the binary, in a cloud service, although this is highly discouraged. To achieve the most security, all data must be kept offline.
Please note that while this password manager is designed to be secure, it's essential to keep your master password safe and to use the application responsibly.
When the user is logged in, the following options are available when right-clicking on the password table:
- creating a new password entry
- updating an existing password entry
- deleting a password entry
- generate a random password
- check password strength
- modify master password## Contributing
Contributions to improve PetitePass are welcome. Please follow these steps:
1. Fork the repository.
2. Create a new branch (`git checkout -b feature-branch`).
3. Make your changes and commit them (`git commit -am 'Add some feature'`).
4. Push to the branch (`git push origin feature-branch`).
5. Create a new Pull Request.## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## TODOs
- Refactoring
- Write unit tests
- Allow user to edit password directly on the table
- Generate backup