privacy-guides/how-to-create-encrypted-paper-backup/create-bip39-mnemonic.py
2021-04-15 13:00:39 -04:00

10 lines
149 B
Python
Executable file

from sys import exit
from mnemonic import Mnemonic
mnemo = Mnemonic("english")
words = mnemo.generate(strength=256)
print(words, end="")
exit(0)