Utilize 1Password vault data with Python decorators and context managers. Driven by the 1Password CLI interface. ππ
Passsssword is a Python-based utility designed to securely use your 1Password vault data right within your Python scripts. Utilizing Python decorators and context managers, the project interfaces with the 1Password CLI to automatically fetch and inject sensitive data, such as passwords or API-keys.
Passsssword offers two features:
-
Decorator (
decjector
): Apply this decorator to any Python function to inject sensitive data automatically securely before its execution. The temporary.env
file containing these variables is safely deleted after the function runs. -
Context Manager (
contextor
): This sets up a secure temporary environment for your code to run in, injecting the necessary passwords,etc. and ensuring their secure deletion afterward.
- Python 3.8 - 3.11
- 1Password CLI
-
Clone the Repository:
git clone https://github.com/chrislemke/passsssword.git
-
Navigate to Project Directory:
cd Passsssword
-
Install Required Packages:
pip install -r requirements.txt
-
Set Up
.env.op
File: Create an.env.op
file either in the project directory or one of its parent directories. This file will store the 1Password vault item paths, looking like thisAPI_KEY = op://MyVault/MyItem/MyAPIKey ...
-
Sign in to 1Password CLI: Make sure you've signed into your 1Password account through the CLI.
op signin <your-domain>
To auto-inject the API-key automatically into your Python function, simply apply the decjector
decorator:
from Passsssword import decjector
@decjector
def sensitive_function():
api_key = os.environ.get('API_KEY')
# Your function logic here
sensitive_function()
The decjector
decorator will securely fetch API_KEY
from your 1Password vault and make it available within sensitive_function
.
You can also use the contextor
context manager in a with
statement:
from Passsssword import contextor
with contextor():
api_key = os.environ.get('API_KEY')
# Your function logic here
Within the with
block, any sensitive data from your 1Password vault specified in .env.op
will be accessible as environment variables.