mutt/offlineimaplinux.py @ b86a3b6153f2

Progress continues
author Steve Losh <steve@stevelosh.com>
date Sun, 08 Jul 2018 15:49:42 +0000
parents 8899300998c0
children 5e93682ea728
#!/usr/bin/python

import subprocess

def get_keychain_pass(account=None, command='pass'):
    full_command = "%s '%s'" % (command, account)
    output = subprocess.check_output(full_command, shell=True, stderr=subprocess.STDOUT)
    return output.splitlines()[0]