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
Entry
Deleting an Entry does not seem to remove attachments.
import pykeepass kp = pykeepass.create_database("test") e = kp.add_entry(kp.root_group, "title", "username", "password") a = kp.add_binary(b"attachment data bytes string", False, False) e.add_attachment(a, "attachment") kp.dump_xml("before.xml") print("before deleting entry", kp.binaries[a]) kp.delete_entry(e) kp.dump_xml("after.xml") print("after deleting entry", kp.binaries[a])
In secrets this can cause orphaned objects to be present in the database. https://gitlab.gnome.org/World/secrets/-/issues/574
secrets
P.S. PyKeePass.dump_xml does not seem to include binaries/attachments in it.
PyKeePass.dump_xml
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Deleting an
Entry
does not seem to remove attachments.In
secrets
this can cause orphaned objects to be present in the database. https://gitlab.gnome.org/World/secrets/-/issues/574P.S.
PyKeePass.dump_xml
does not seem to include binaries/attachments in it.The text was updated successfully, but these errors were encountered: