EmailCrawler
Email crawler: crawls the top ten Google search results looking for email addresses and exports them to CSV.
Installation
$ gem install email_crawler
$ cp .env.example .env
# set your Digital Ocean credentials (@see lib/email_crawler/proxy.rb for more details)
Usage
- Ask for help
email-crawler --help
- Simplest Google search
email-crawler -q "berlin walks"
- Select which Google website to use (defaults to google.com.br)
email-crawler -q "berlin walks" -g google.de
- Specify how many internal links are to be scanned for email addresses (defaults to 100)
email-crawler -q "berlin walks" -g google.de -m 250
- Redirect output to a file
email-crawler -q "berlin walks" -g google.de -m 250 > ~/Desktop/belin-walks-emails.csv
Contributing
- Fork it ( http://github.com/wecodeio/email_crawler/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request