Skip to content

Instantly share code, notes, and snippets.

@SNISS
Last active May 6, 2021 16:42
Show Gist options
  • Save SNISS/bcfa229efcc4f3827b3c52501ecd80db to your computer and use it in GitHub Desktop.
Save SNISS/bcfa229efcc4f3827b3c52501ecd80db to your computer and use it in GitHub Desktop.
track a email in website
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 ')
@SNISS
Copy link
Author

SNISS commented May 5, 2021

This is a simple email tracker

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment