Hi I'm trying to find a list of e-mails from a website. there is 4 e-mail addresses on the website but only returns 2 emails.
I'm using this to help search for the emails.
emails = re.findall(r'[^\s@<>]+@[^\s@<>]+\.[^\s@<>]+',s)
print(count, ' email address found : ',item)
count += 1