我有来自 Google Chrome 的 LevelDB (IndexedDB) 文件,该文件位于以下文件夹中:
/home/<user>/.config/google-chrome/Default/IndexedDB/https_<site>_0.indexeddb.leveldb/
文件夹内容为:
$ ls
000005.ldb 000006.log CURRENT LOCK LOG MANIFEST-000001
我有一个非常简单的 python 脚本来打开它:
#!/bin/python
import leveldb
db = leveldb.LevelDB('./000005.ldb')
现在我总是收到这个错误:
leveldb.LevelDBError: IO error: ./000005.ldb/LOCK: Not a directory
有没有人知道如何正确访问存储在我的 IndexDB 文件中的数据?基本上,我只需要从“开发人员工具”视图中获取相同的信息,但使用 Bash 或 Python。
Smart猫小萌
墨色风雨
相关分类