mutt/offlineimaplinux.py @ 8899300998c0

linux
author Steve Losh <steve@stevelosh.com>
date Sun, 10 Jun 2018 09:18:15 -0700
parents (none)
children b86a3b6153f2
#!/usr/bin/python

import subprocess

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