Exporting decrypted database for manual browsing
gsuberland opened this issue · 3 comments
gsuberland commented
Is there a way to load the encrypted database with a key, then export it as a plaintext database for manual browsing and inspection?
dylanljones commented
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:)
dylanljones commented
You can now create a decrypted copy of the db by calling:
db = Rekordbox6Database()
db.copy_unlocked("master_unlocked.db")
gsuberland commented
Perfect! Thanks for sorting this so quickly.