se-scraper/run.js

83 lines
3.3 KiB
JavaScript
Raw Permalink Normal View History

2018-12-24 14:25:02 +01:00
const se_scraper = require('./index.js');
2019-06-11 22:01:27 +02:00
// those options need to be provided on startup
// and cannot give to se-scraper on scrape() calls
let browser_config = {
2018-12-24 14:25:02 +01:00
// the user agent to scrape with
user_agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36',
// if random_user_agent is set to True, a random user agent is chosen
2019-06-11 22:01:27 +02:00
random_user_agent: false,
// whether to start the browser in headless mode
headless: false,
2019-06-11 18:16:59 +02:00
// whether debug information should be printed
// level 0: print nothing
// level 1: print most important info
// ...
// level 4: print all shit nobody wants to know
debug_level: 1,
// specify flags passed to chrome here
chrome_flags: [],
2019-01-27 15:54:56 +01:00
// path to js module that extends functionality
// this module should export the functions:
// get_browser, handle_metadata, close_browser
// must be an absolute path to the module
//custom_func: resolve('examples/pluggable.js'),
custom_func: '',
// use a proxy for all connections
// example: 'socks5://78.94.172.42:1080'
// example: 'http://118.174.233.10:48400'
2019-01-30 23:53:09 +01:00
proxy: '',
// a file with one proxy per line. Example:
// socks5://78.94.172.42:1080
// http://118.174.233.10:48400
proxy_file: '',
puppeteer_cluster_config: {
timeout: 10 * 60 * 1000, // max timeout set to 10 minutes
monitor: false,
concurrency: 1, // one scraper per tab
2019-06-11 22:01:27 +02:00
maxConcurrency: 1, // scrape with 1 tab
}
2018-12-24 14:25:02 +01:00
};
2019-06-11 18:16:59 +02:00
(async () => {
2019-06-11 22:01:27 +02:00
// scrape config can change on each scrape() call
2019-06-11 18:16:59 +02:00
let scrape_config = {
// which search engine to scrape
search_engine: 'duckduckgo',
2019-06-11 18:16:59 +02:00
// an array of keywords to scrape
keywords: ['cloud service'],
2019-06-11 18:16:59 +02:00
// the number of pages to scrape for each keyword
2019-06-12 18:14:49 +02:00
num_pages: 1,
2019-06-11 22:01:27 +02:00
// OPTIONAL PARAMS BELOW:
2019-06-12 18:14:49 +02:00
// google_settings: {
// gl: 'us', // The gl parameter determines the Google country to use for the query.
// hl: 'fr', // The hl parameter determines the Google UI language to return results.
// start: 0, // Determines the results offset to use, defaults to 0.
// num: 100, // Determines the number of results to show, defaults to 10. Maximum is 100.
// },
2019-06-11 22:01:27 +02:00
// instead of keywords you can specify a keyword_file. this overwrites the keywords array
keyword_file: '',
// how long to sleep between requests. a random sleep interval within the range [a,b]
// is drawn before every request. empty string for no sleeping.
sleep_range: '',
// path to output file, data will be stored in JSON
output_file: '',
2019-06-11 22:01:27 +02:00
// whether to prevent images, css, fonts from being loaded
// will speed up scraping a great deal
block_assets: false,
2019-06-11 22:01:27 +02:00
// check if headless chrome escapes common detection techniques
// this is a quick test and should be used for debugging
test_evasion: false,
apply_evasion_techniques: true,
// log ip address data
log_ip_address: false,
// log http headers
log_http_headers: false,
2019-06-11 18:16:59 +02:00
};
2018-12-24 14:25:02 +01:00
2019-06-11 22:01:27 +02:00
let results = await se_scraper.scrape(browser_config, scrape_config);
2019-06-11 18:16:59 +02:00
console.dir(results, {depth: null, colors: true});
})();
2019-01-27 20:08:09 +01:00