Skip to content

Utilize 1Password vault data with Python decorators and context managers. Driven by the 1Password CLI interface. πŸπŸ”

License

Notifications You must be signed in to change notification settings

chrislemke/passsssword

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

15 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

The Transformer

Passsssword

Utilize 1Password vault data with Python decorators and context managers. Driven by the 1Password CLI interface. πŸπŸ”

ChecksAndTesting codecov pypi python version license pre-commit black mypy

Introduction

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:

  1. 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.

  2. 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.

Setup

Requirements

  1. Python 3.8 - 3.11
  2. 1Password CLI

Installation Steps

  1. Clone the Repository:

    git clone https://github.com/chrislemke/passsssword.git
    
  2. Navigate to Project Directory:

    cd Passsssword
    
  3. Install Required Packages:

    pip install -r requirements.txt
    
  4. 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 this

     API_KEY = op://MyVault/MyItem/MyAPIKey
     ...
    
  5. Sign in to 1Password CLI: Make sure you've signed into your 1Password account through the CLI.

    op signin <your-domain>
    

Usage

Using the decjector Decorator

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.

Using the contextor Context Manager

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.

About

Utilize 1Password vault data with Python decorators and context managers. Driven by the 1Password CLI interface. πŸπŸ”

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Languages