A CLI for keepassxc-proxy
Project description
keepassxc_proxy_client
A small library as well as CLI tool to fetch information from a running keepassxc instance.
CLI
See keepassxc_proxy_client --help
for usage.
Library
You can use it like this:
import keepassxc_proxy_client
import keepassxc_proxy_client.protocol
connection = keepassxc_proxy_client.protocol.Connection()
connection.connect()
print(connection.get_databasehash())
# This will open a keepassxc dialogue
print(connection.associate())
print(connection.test_associate())
print(connection.dump_associate())
print(connection.get_logins("https://github.com"))
Please always use a URL with http or https for retreiving logins, otherwise no logins will be found.
You can use connection.get_logins("https://github.com")
when you actually stored URL just as "github.com"
within KeepassXC. This will work.
However it won't work using get_logins("github.com") even if you have stored URL as "github.com".
To connect and retreive logins from KeepassXC Browser integration has to be enabled in settings. Checkboxes for different Browser don't need to be checked. Enabled browser integration is enough for keepassxc_proxy_client to work.
If you want to dump and later read in the associate information you can do this as follows:
import keepassxc_proxy_client
import keepassxc_proxy_client.protocol
connection = keepassxc_proxy_client.protocol.Connection()
connection.connect()
connection.associate()
name, public_key = connection.dump_associate()
print("Got connection named '", name, "' with key", public_key)
# save it and read it in again for later
#Later usage
connection = keepassxc_proxy_client.protocol.Connection()
connection.connect()
connection.load_associate(name, public_key)
print(connection.test_associate())
It is recommended to store the private key in a secure location since it basically acts as a key file to all your passwords that are associated with a URL, since get_logins() can only fetch passwords that are associated with one.
Version 0.1.4
- Added support for Windows
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file keepassxc-proxy-client-0.1.7.tar.gz
.
File metadata
- Download URL: keepassxc-proxy-client-0.1.7.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 652f0c00f38fd947d3efe502ac44b8a59cc8d4ca6b62561110fad835a81107a0 |
|
MD5 | 0b40e6d10d124a286b6d822ba3a20df8 |
|
BLAKE2b-256 | 3691df71c65fc069ca654aee719464662c1de93a4132e145fd2dd9d51e270201 |
File details
Details for the file keepassxc_proxy_client-0.1.7-py3-none-any.whl
.
File metadata
- Download URL: keepassxc_proxy_client-0.1.7-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31b1563384f4d461488d32d6fa8ace7e395c003fb6f60e9b7194bd64d174e4d2 |
|
MD5 | e25b8f674c4d6be80bf7a7bdea9faa94 |
|
BLAKE2b-256 | 406dcb8f4a9584fb26eb84c2703bea1133daa506183def04724812232465169b |