Last active
August 15, 2022 18:57
-
-
Save nullenc0de/ff70efbb787ff534b661c809ed3c7f4e to your computer and use it in GitHub Desktop.
check if email exists
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
import json | |
import sys | |
data = json.load(sys.stdin) | |
if data['is_reachable'] == 'safe': | |
sys.stdout.write(data['input'] + '\n') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment