Keepsafe is a Python library that helps you securely store and retrieve sensitive information like passwords, API keys, and other secrets. It uses encryption techniques to ensure that your sensitive data is safe, and only accessible using the correct master password or decryption key.
- Securely store and retrieve secrets (e.g., passwords, API keys).
- Encryption based on
Fernet
andPBKDF2
for password-based key derivation. - Supports adding secrets using either the master password or decryption key.
- Export secrets to
.env
files for use in applications. - Easily integrated into existing projects.
You can install keepsafe
via pip
from PyPI:
pip install keepsafe
First, create a Keepsafe
object and initialize the file:
from keepsafe import KeepSafe
ks = KeepSafe("./secrets.keepsafe")
decryption_key = ks.initialize_file(password="your_master_password")
You can add secrets either using the master password or the decryption key:
ks.add_secret("api_key", "super_secret_api_key", password_or_decryption_key="your_master_password")
ks.add_secret("email_password", "super_secret_email_password", password_or_decryption_key=decryption_key)
You can retrieve secrets using the master password or the decryption key:
api_key = ks.get_secret("api_key", password_or_decryption_key="your_master_password")
email_password = ks.get_secret("email_password", password_or_decryption_key=decryption_key)
print(f"API Key: {api_key}")
print(f"Email Password: {email_password}")
To unlock the file and export all secrets to a .env
file:
ks.unlock(password="your_master_password", env_file_path=".env")
This will export the secrets into the .env
file, where each secret will be written as KEY=VALUE
.
To run tests, you can use pytest
. This package includes basic tests to verify that the core functionality works as expected.
Run the tests with:
pytest
Keepsafe is distributed under the MIT License. See LICENSE
for more information.
We welcome contributions to Keepsafe! Before contributing, please make sure to read our Code of Conduct and follow the guidelines below to ensure a smooth collaboration process.
Please ensure you follow the Code of Conduct when contributing.
If you encounter any issues or need assistance, feel free to open an issue or contact the maintainers.
Thank you for your contributions!
For any issues, bugs, or feature requests, please open an issue on the GitHub repository.