Envrify is a centralized, cloud-based platform designed to securely manage and synchronize environment variables (.env) for teams and individual developers. This SDK allows you to programmatically fetch and sync your configuration while maintaining strict security via local decryption.
- Secure Sync: Fetch encrypted variables directly from the Envrify API.
- Conflict Protection: Detects local changes before updating your
.envfile. - Encryption-First: Built with support for AES-256 standards.
pip install envrifyTo use the SDK, you will need your API Key and File ID from the Envrify dashboard.
from envrify import Envrify
# Initialize the client
client = Envrify(
api_key="your_api_key",
)
# Sync remote variables to your local .env file
client.sync()Envrify uses an encryption-first design. All values are stored in encrypted form, and decryption occurs locally on your machine to ensure that sensitive data is never exposed in plain text over the network.