This file contains 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 requests | |
from bs4 import BeautifulSoup | |
# Function to check the email on the mail7.net site | |
def check_email(email): | |
url = "https://mail7.net/emailchecker.html#emailCheck" | |
data = {'email': email, 'submit': 'Check it'} | |
headers = { | |
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36', | |
'Content-Type': 'application/x-www-form-urlencoded' |
OlderNewer