|
|
@ -20,6 +20,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import sys
|
|
|
|
import hashlib
|
|
|
|
import hashlib
|
|
|
|
|
|
|
|
import codecs
|
|
|
|
|
|
|
|
|
|
|
|
email = sys.argv[1].lower().strip()
|
|
|
|
email = sys.argv[1].lower().strip()
|
|
|
|
if email[0] == '<':
|
|
|
|
if email[0] == '<':
|
|
|
@ -29,6 +30,9 @@ if email[-1] == '>':
|
|
|
|
|
|
|
|
|
|
|
|
page = sys.argv[2]
|
|
|
|
page = sys.argv[2]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sys.stdin = codecs.getreader("utf-8")(sys.stdin.detach())
|
|
|
|
|
|
|
|
sys.stdout = codecs.getwriter("utf-8")(sys.stdout.detach())
|
|
|
|
|
|
|
|
|
|
|
|
md5 = hashlib.md5(email.encode()).hexdigest()
|
|
|
|
md5 = hashlib.md5(email.encode()).hexdigest()
|
|
|
|
text = sys.stdin.read().strip()
|
|
|
|
text = sys.stdin.read().strip()
|
|
|
|
|
|
|
|
|
|
|
|