We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does this library provide a programming interface?
For example, in the client code, we can query the stored password by something like:
vault = Vault.initialize(masterPassword='abc') chasePasswords = vault.getPasswords(category='Bank', name='Chase') # Returned password is an entry struct. password = chasePasswords[0] print(password.category, password.name, password.url, password.login, password.password, password.notes)
The text was updated successfully, but these errors were encountered:
Hi @huangyunict
There is no programming interface but you can (as you have done) rely on the existing code to query the encrypted database.
Sorry, something went wrong.
No branches or pull requests
Does this library provide a programming interface?
For example, in the client code, we can query the stored password by something like:
The text was updated successfully, but these errors were encountered: