how to convert xprv to wif or (hex) 1,2,3 address index (python)i try this script?
https://github.com/lyndsysimon/bip32utilsk.txt :
xprv9u4S6TaiPQdMnT6uRJXQCxW69c3dRK7QEWJzq8iTFGXi1RcfjomN1H13dvci2wLBhQYkYEk4GngfpL1F9fbBqcWWu6qWRPQbuR5wmHLgRm4
xprv9wRuwjCQVQgMUaDTMhNS819LTEHUV7zfZ219Cr5tfziUKW7ucDVrVsM1camgGbWV6waQGZCNZwRyfJD8h7XYUVHoyNS5JmFxAdDfLnstxN2
...
I want to use this command to select xprv one by one and convert to wif or privkey(hex)
cat k.txt | bip32gen -i xprv -f - -o wif -F - 0 1
L23QxT1kkPrXVagUPaFgr3RxAv46QJamgkgfu724bkT8TLCfVwda
KxzGwpbbisCcuNK5dJt33jPJVrpDpe1st6qES2PSF2TWu8LCofyQ
But it only works if there are only 1 xprv in the dictionary / please help me how to make it possible to convert many
maybe some other similar script or this one like that?