This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pip install mnemonic | |
from mnemonic import Mnemonic | |
mnemo = Mnemonic("english") | |
words = mnemo.generate(strength=256) | |
# words is 'police you depend enemy cash culture snap east borrow maximum loop code reduce decorate conduct plunge deny rotate inner flower then insane cheese assume' |
OlderNewer