Google抓取工具:从Google SERP中提取链接
谷歌爬虫
GoogleScraper是一个nodejs模块,用于从Google SERP中提取链接。
下载
该资源可从下载。 或者,您可以使用Node Package Manager(npm)或yarn安装:
npm install google-scraper
yarn add google-scraper
例
const GoogleScraper = require ( 'google-scraper' ) ;
const options = {
keyword : "javascript" ,
language : "fr" ,
tld : "fr" ,
results : 100
} ;
const scrape = new GoogleScraper ( options ) ;
scrape . getGoogleLinks . then ( function ( value ) {
console . log ( value ) ;
} ) . catch ( function ( e ) {
console . log ( e ) ;