2

I'm trying to open wallet.dat using the bsddb3 module for Python 2.7.

db = bsddb3.btopen("wallet.dat", "r")

contents of db:

{'main': '\x00\x00\x00\x02'}

I have to Which is almost nothing.

ls -l wallet.dat -> 72K

I though I could view information about the wallet, is there problem with the version of bsddb or this line of code?

psycat
  • 141
  • 5

1 Answers1

2

open the database like this:

from bsddb.db import *

db = DB()
r= db.open("wallet.dat", "main", DB_BTREE, DB_RDONLY)

print "%s" % (db.items())
Willem Hengeveld
  • 1,480
  • 12
  • 15