mirror of
https://github.com/sunknudsen/privacy-guides.git
synced 2025-02-22 16:53:56 +00:00
11 lines
149 B
Python
Executable File
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)
|