I'm trying to access leveldbs generated by Chrome storing indexeddbs. I get keys and values. But they are either in an unknown encoding - I've tried many ways to detect them - or they are scrambled in some way.
import plyvel
db = plyvel.DB(dirname, comparator=cmp, comparator_name="idb_cmp1")
for key, value in db:
print(key)
print(value)
I don't mind if the keys are in random order as described here. But it would be nice to get the keys and values in a readable fashion. I'm not dealing with binary data in the leveldb, either.
I'm using plyvel in python to iterate over the db. This answer might be related: LevelDB C iterator