Python
Encrypt a .env file in Python with the Dotenvx SDK, commit it safely, and load its secrets at runtime.
1. Install
Get the Dotenvx Python SDK.
$ pip install python-dotenvx
And the CLI to encrypt files.
$ curl -sfS https://dotenvx.sh | sh
2. Encrypt
Encrypt your .env file.
$ dotenvx encrypt
3. Inject
Then inject your encrypted secrets at runtime.
import os
from dotenvx import load_dotenv
load_dotenv()
print(f"HELLO: {os.getenv('HELLO')}")