dylanljones/pyrekordbox

Exporting decrypted database for manual browsing

gsuberland opened this issue · 3 comments

Is there a way to load the encrypted database with a key, then export it as a plaintext database for manual browsing and inspection?

Hi, there is a way to export the data as JSON, but i am guessing you mean exporting the db as an unlocked SQLite database?
That is not implemented yet, but i will add it in the next release:)

You can now create a decrypted copy of the db by calling:

db = Rekordbox6Database()
db.copy_unlocked("master_unlocked.db")

Perfect! Thanks for sorting this so quickly.