Skip to content

Envrify/envrify-python-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Envrify Python SDK

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.

Features

  • Secure Sync: Fetch encrypted variables directly from the Envrify API.
  • Conflict Protection: Detects local changes before updating your .env file.
  • Encryption-First: Built with support for AES-256 standards.

Installation

pip install envrify

Quick Start

To 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()

Security

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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages