Scrape Search Engines using Puppeteer
# Using npm
npm install --save puppeteer-search-scraper
# Using yarn
yarn add puppeteer-search-scraper
const SearchScraper = require("puppeteer-search-scraper");
const headless = false
SearchScraper.configure([
{
name: "GoogleCom"
, debugDir: __dirname + "/public/GoogleCom"
, searchUrl: "http://google.com/webhp?num=100"
, limit: 100
, selectors: SearchScraper.Selectors.GOOGLE_MOBILE
, headless
, device: "iPhone X"
}
, {
name: "GoogleCoUk"
, debugDir: __dirname + "/public/GoogleCoUk"
, searchUrl: "http://google.co.uk/webhp?num=100"
, limit: 100
, selectors: SearchScraper.Selectors.GOOGLE
, headless
}
, {
name: "GoogleCoAu"
, debugDir: __dirname + "/public/GoogleComAu"
, searchUrl: "http://google.com.au/webhp?num=100"
, limit: 100
, selectors: SearchScraper.Selectors.GOOGLE
, headless
}
, {
name: "Bing"
, debugDir: __dirname + "/public/Bing"
, searchUrl: "http://bing.com/"
, limit: 30
, selectors: SearchScraper.Selectors.BING
, headless
}
])
const QUERY = "who killed kennedy";
(async () => {
//console.log(">>>> Google.com")
//console.log(await SearchScraper.search(QUERY, { engine: "GoogleCom" }))
//console.log(">>>> Google.co.uk")
//console.log(await SearchScraper.search(QUERY, { engine: "GoogleCoUk" }))
//console.log(">>>> Google.com.au")
//console.log(await SearchScraper.search(QUERY, { engine: "GoogleCoAu" }))
console.log(">>>> Bing.com")
console.log(await SearchScraper.search(QUERY, { engine: "Bing" }))
})()
There are few ways to get help:
- Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
- For bug reports and feature requests, open issues. π
- For direct and quick help, you can use Codementor. π
- Object
c
: The SearchScraper options along with thename
of the scraper.
- SearchScraper The instance of the scraper.
- String
name
: The name of the scraper
- SearchScraper The instance of the scraper.
- Array
conf
: An array containing:
Scrape Google using Puppeteer
- String
term
: The term to search. - Object
options
: An object containing:limit
(Number): The limit of the results (default: 100)headless
(Boolean): Whether the browser should be headless or not.
- Promise A promise resolving with an array of elements containing:
title
(String)url
(String)
Have an idea? Found a bug? See how to contribute.
I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).
However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:
-
Starring and sharing the projects you like π
-
βI love books! I will remember you after years if you buy me one. π π
-
βYou can make one-time donations via PayPal. I'll probably buy a
coffeetea. π΅ -
βSet up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).
-
BitcoinβYou can send me bitcoins at this address (or scanning the code below):
1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6
Thanks! β€οΈ