ckb wallet python lib
seed = "comfort rough close flame uniform chapter unique announce miracle debris space like"
cw = CKBWallet(seed)
for i in range(10):
# get child address
print(cw.getChildAddress(0, i))
# get child key
cw.getChildKey(0, i)
Master key is encrypted by AES-128
ekey = cw.dumpMasterKey(passwd)
cw = CKBWallet.fromEncryptedKey(passwd, ekey)