Last active
May 6, 2021 16:42
-
-
Save SNISS/bcfa229efcc4f3827b3c52501ecd80db to your computer and use it in GitHub Desktop.
track a email in website
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 re | |
| import requests | |
| requisicao = requests.get(input('enter the entire website link: ')) | |
| padrao = re.findall(r'[\w\.]+@[\w-]+\.[\w\.-]+', requisicao.text) | |
| if padrao: | |
| print (padrao) | |
| else: | |
| print ('emails not found ') |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a simple email tracker