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.5.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.5.tar.gz.
File metadata
- Download URL: lazy_locker-0.0.5.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa20386f56a37efda1eca51f6075c29374331611460deda609f13970b91f8e5a
|
|
| MD5 |
8d7c06af8e3729e5ea661c96957bc82d
|
|
| BLAKE2b-256 |
97adfd6e53ec689c98ec6eb26950157c6b797e838f47bf49df3bd406ca9e13b1
|
File details
Details for the file lazy_locker-0.0.5-py3-none-any.whl.
File metadata
- Download URL: lazy_locker-0.0.5-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c816a901de1081879dcb1632b3e948e76483a672402aad30039f2852506db7b
|
|
| MD5 |
ffa12977f792db18e91e7034427f822c
|
|
| BLAKE2b-256 |
221206b47b7bf9312f2fec473ab9d96258ba1f913457763a7de7c5516b52e24a
|