#!/usr/bin/python3

import sys, bsddb

db=bsddb.hashopen(sys.argv[1])
for key,value in db.items():
  print "%s\t%s" % (key,value)
db.close()
