2021-04-09 14:00:59 -04:00

11 lines
149 B
Python

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