mirror of
https://github.com/sunknudsen/privacy-guides.git
synced 2025-02-22 16:53:56 +00:00
13 lines
183 B
Python
Executable File
13 lines
183 B
Python
Executable File
from sys import exit, stdin
|
|
from mnemonic import Mnemonic
|
|
|
|
mnemo = Mnemonic("english")
|
|
|
|
lines = stdin.readlines()
|
|
|
|
for line in lines:
|
|
if not mnemo.check(line):
|
|
exit(1)
|
|
|
|
exit(0)
|