passtodict

Password-Store client library


Keywords
pass
License
LGPL-3.0
Install
pip install passtodict==0.1.4

Documentation

Decrypts Password Store passwords and creates a dict-like structure.

$ pass example.org
my-secret-password
login: JohnDoe
email: johndoe@example.org
>>> import passtodict
>>> ex = passtodict('example.org')
>>> ex['login']
JohnDoe
>>> ex['email']
johndoe@example.org
>>> ex.PWD
my-secret-password