2021-04-15 13:00:39 -04:00

11 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)