Skip to content

Instantly share code, notes, and snippets.

@savchenko
Created March 18, 2026 21:56
Show Gist options
  • Select an option

  • Save savchenko/87a982c4e24954ca1176ea9be392a8a3 to your computer and use it in GitHub Desktop.

Select an option

Save savchenko/87a982c4e24954ca1176ea9be392a8a3 to your computer and use it in GitHub Desktop.
Recover KeePassXC settings as plaintext
from PyQt5.QtCore import QSettings
for k in QSettings("keepassxc.ini", QSettings.IniFormat).allKeys():
print(k, settings.value(k))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment