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.4.tar.gz
(3.3 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.4.tar.gz.
File metadata
- Download URL: lazy_locker-0.0.4.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a84a6f14db77cf64f2fb0f5dcfbad09ffafc61f4ebe2ce145ac59df0b61f0620
|
|
| MD5 |
4e73803bc89cee10d19fd129f2847002
|
|
| BLAKE2b-256 |
b37201ebbc60fd71daa8adc161c487b6f4447dfbc572b33ce68e8e00a1b89e7b
|
File details
Details for the file lazy_locker-0.0.4-py3-none-any.whl.
File metadata
- Download URL: lazy_locker-0.0.4-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 |
8f7b2c1d93e8e5571193c076e349863a58907078d74681b0ba4079c19db1bb95
|
|
| MD5 |
b00ab76306177ed66f4c5ef769ab4f72
|
|
| BLAKE2b-256 |
2ff252ad2e2df1d27983f383dbcdfea0552063741864925b3b6e1a42e4c465f1
|