python - Shortest way to browse an LMDB in pandas under jupyter notebook -


tldr: how inspect \ browse lmdb binary file?

complete py n00b here. i've had lmdb file dumped in lap analyze data errors causing bugs in downstream software. don't know data schema , it's 1 gb in size. i've spent hour looking q&d way use jupyter , pandas browse file without knowing schema no joy.

what shortest way this? link fine.

lmdb type of embedded key value store:

you can use package read db either specific keys, or iterating on it. note it's common practice values binary serialized objects - you'll have inspect them see how formated


Comments