Low-level library to interact with keepass databases (supports the v.4 format)
Project description
This library allows you to write entries to a KeePass database
from pykeepass import PyKeePass
# load database
kp = PyKeePass(
'db.kdbx',
password='somePassw0rd'
)
# find any group by its name
group = pk.find_group_by_name('folder1')
# get the entries in a group
group.entries
# find any entry by its title
entry = pk.find_entry_by_title('test')
# retrieve the associated password
entry.password
# update an entry
entry.notes = 'this is a test'
# write a new entry
pk.create_entry(
group,
'new_entry',
'myusername',
'myPassw0rdXX'
)
# save database
pk.save('/tmp/pykeepass.kdbx')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pykeepass-2.1.1.tar.gz
(8.4 kB
view details)
File details
Details for the file pykeepass-2.1.1.tar.gz.
File metadata
- Download URL: pykeepass-2.1.1.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f592c3835fc8580dcb7224d02ea4d750c51647cf3ea4a61983c4c6a345710496
|
|
| MD5 |
eb48e7af4ec6585f19afdabd8c97b330
|
|
| BLAKE2b-256 |
408cd68c03ef208bdd9092b705637f72e9623a29943f1340f3cb7df8b2c166af
|