[help] i need help with scraping

aguero1998

Newbie
Joined
Oct 4, 2019
Messages
47
Reaction score
9
Hey guys i hope someone could help me, i have a list of urls of targeted website for my service it's huge " 1000's . i want to scrape them for the emails .. i tried atomic email and it was shit, Hunter.io is expensive .. what is your suggestions ?
 
there are a lot of paid tools for it. you could also hire someone with imacros knowledge on here to do it. in reality you are just text/html scraping the entire site and using regular expressions to find the email addresses.
 
there are a lot of paid tools for it. you could also hire someone with imacros knowledge on here to do it. in reality you are just text/html scraping the entire site and using regular expressions to find the email addresses.
first thanks for your reply,
the paid tools are so expensive , hunter.io will take 40$ for 500 bulk search! snovio as well.
i am not familiar with codes tbh
 
You can learn enough Python for the job in an hour or so.

Type this into search engine:
  1. how to install python3
  2. how to install packages using pip
  3. how to get page content using requests library
  4. how to read lines from file
  5. how to do for loop
  6. regex for email
  7. how to implement regex in python
Don't think GO GO GO.
 
You can learn enough Python for the job in an hour or so.

Type this into search engine:
  1. how to install python3
  2. how to install packages using pip
  3. how to get page content using requests library
  4. how to read lines from file
  5. how to do for loop
  6. regex for email
  7. how to implement regex in python
Don't think GO GO GO.
wow that's cool .. i am going for it now!
 
Back
Top