Contents
Wrapper for the pinentry program. Easy workflow in python:
from askpass import AskPass with AskPass() as ask: for x in ask: if x == 'password': break else: raise ValueError()