Python SDK for lazy-locker - A secure local secrets manager
Project description
lazy-locker SDK for Python
SDK Python pour lazy-locker - Gestionnaire de secrets sécurisé.
Installation
pip install lazy-locker
# ou
uv add lazy-locker
Prérequis
L'agent lazy-locker doit être démarré :
lazy-locker # Entrez votre passphrase dans le TUI
L'agent reste actif pendant 8 heures.
Usage
Injection automatique
from lazy_locker import inject_secrets
import os
# Injecte tous les secrets dans os.environ
inject_secrets()
# Utilisez vos secrets normalement
api_key = os.environ["MY_API_KEY"]
Récupération manuelle
from lazy_locker import get_secrets, get_secret
# Tous les secrets
secrets = get_secrets()
print(secrets) # {"MY_API_KEY": "xxx", "DB_PASSWORD": "yyy"}
# Un secret spécifique
api_key = get_secret("MY_API_KEY")
Vérification de l'agent
from lazy_locker import is_agent_running, status
if is_agent_running():
info = status()
print(f"Agent actif, TTL restant: {info['ttl_remaining_secs']}s")
else:
print("Lancez lazy-locker pour démarrer l'agent")
Comparaison avec python-dotenv
| Feature | python-dotenv | lazy-locker |
|---|---|---|
| Secrets en clair sur disque | ✅ Oui (.env) | ❌ Non (chiffré) |
| Versioning sécurisé | ❌ Non | ✅ Oui |
| Expiration des secrets | ❌ Non | ✅ Oui |
| Multi-projet | ❌ Non | ✅ Oui |
Migration depuis python-dotenv
# Avant
from dotenv import load_dotenv
load_dotenv()
# Après
from lazy_locker import inject_secrets
inject_secrets()
# Le reste du code reste identique !
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
lazy_locker-0.0.2.tar.gz
(3.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lazy_locker-0.0.2.tar.gz.
File metadata
- Download URL: lazy_locker-0.0.2.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e255c8f0681191d86f5bee7176acee9baa646f01ba30e243bd3e0dd9ecffd395
|
|
| MD5 |
c82e7c25e600422259553c4775216eb2
|
|
| BLAKE2b-256 |
cfb46030e3a387f54d2c48a384ba8f644ba016ba7156827acaea5793ebc0a1cf
|
File details
Details for the file lazy_locker-0.0.2-py3-none-any.whl.
File metadata
- Download URL: lazy_locker-0.0.2-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eceb94caa79436512f3c2e45356f824758c017f5e3e6814e25ba7e3307c5ca02
|
|
| MD5 |
3140b8efa737f214b0b06a30e0c81ffa
|
|
| BLAKE2b-256 |
5cdef1871fe9cb05a35fb49f8d807a9378598b4ed297ab5b8102ed3f5587113d
|