Skip to content

Instantly share code, notes, and snippets.

View SNISS's full-sized avatar

SNISS

View GitHub Profile
@SNISS
SNISS / email tracker.py
Last active May 6, 2021 16:42
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 ')
import urllib
import urllib.request
from time import sleep
try:
print ('Se vc estiver sem conexão o site não estará acessivel')
sleep(1)
site = urllib.request.urlopen(input('Digite o link do site com http Ex(https://www.youtube.com/): '))