BasicCrawler <Context>
Hierarchy
- BasicCrawler
Index
Constructors
constructor
- All - BasicCrawlerparameters are passed via an options object.- Parameters- options: BasicCrawlerOptions<Context> = {}
- config: Configuration = ...
 - Returns BasicCrawler<Context>
Properties
optionalautoscaledPool
A reference to the underlying AutoscaledPool class that manages the concurrency of the crawler.
NOTE: This property is only initialized after calling the
crawler.run()function. We can use it to change the concurrency settings on the fly, to pause the crawler by callingautoscaledPool.pause()or to abort it by callingautoscaledPool.abort().
readonlyconfig
hasFinishedBefore
readonlylog
optionalrequestList
A reference to the underlying RequestList class that manages the crawler's requests. Only available if used by the crawler.
optionalrequestQueue
Dynamic queue of URLs to be processed. This is useful for recursive crawling of websites. A reference to the underlying RequestQueue class that manages the crawler's requests. Only available if used by the crawler.
readonlyrouter
Default Router instance that will be used if we don't specify any requestHandler.
See router.addHandler() and router.addDefaultHandler().
running
optionalsessionPool
A reference to the underlying SessionPool class that manages the crawler's sessions. Only available if used by the crawler.
readonlystats
A reference to the underlying Statistics class that collects and logs run statistics for requests.
Methods
addRequests
- Adds requests to the queue in batches. By default, it will resolve after the initial batch is added, and continue adding the rest in background. You can configure the batch size via - batchSizeoption and the sleep time in between the batches via- waitBetweenBatchesMillis. If you want to wait for all batches to be added to the queue, you can use the- waitForAllRequestsToBeAddedpromise you get in the response object.- This is an alias for calling - addRequestsBatched()on the implicit- RequestQueuefor this crawler instance.- Parameters- requests: RequestsLike- The requests to add 
- options: CrawlerAddRequestsOptions = {}- Options for the request queue 
 - Returns Promise<CrawlerAddRequestsResult>
exportData
- Retrieves all the data from the default crawler Dataset and exports them to the specified format. Supported formats are currently 'json' and 'csv', and will be inferred from the - pathautomatically.- Parameters- path: string
- optionalformat: json | csv
- optionaloptions: DatasetExportOptions
 - Returns Promise<Data[]>
getData
- Retrieves data from the default crawler Dataset by calling Dataset.getData. - Parameters- rest...args: [options: DatasetDataOptions]
 - Returns Promise<DatasetContent<Dictionary>>
getDataset
getRequestQueue
- Returns Promise<RequestProvider>
pushData
- Pushes data to the specified Dataset, or the default crawler Dataset by calling Dataset.pushData. - Parameters- data: Dictionary | Dictionary[]
- optionaldatasetIdOrName: string
 - Returns Promise<void>
run
- Runs the crawler. Returns a promise that resolves once all the requests are processed and - autoscaledPool.isFinishedreturns- true.- We can use the - requestsparameter to enqueue the initial requests — it is a shortcut for running- crawler.addRequests()before- crawler.run().- Parameters- optionalrequests: RequestsLike- The requests to add. 
- optionaloptions: CrawlerRunOptions- Options for the request queue. 
 - Returns Promise<FinalStatistics>
setStatusMessage
- This method is periodically called by the crawler, every - statusMessageLoggingIntervalseconds.- Parameters- message: string
- options: SetStatusMessageOptions = {}
 - Returns Promise<void>
stop
- Gracefully stops the current run of the crawler. - All the tasks active at the time of calling this method will be allowed to finish. - To stop the crawler immediately, use - crawler.teardown()instead.- Parameters- message: string = 'The crawler has been gracefully stopped.'
 - Returns void
teardown
- Stops the crawler immediately. - This method doesn't wait for currently active requests to finish. - To stop the crawler gracefully (waiting for all running requests to finish), use - crawler.stop()instead.- Returns Promise<void>
useState
- Parameters- defaultValue: State = ...
 - Returns Promise<State>
Provides a simple framework for parallel crawling of web pages. The URLs to crawl are fed either from a static list of URLs or from a dynamic queue of URLs enabling recursive crawling of websites.
BasicCrawleris a low-level tool that requires the user to implement the page download and data extraction functionality themselves. If we want a crawler that already facilitates this functionality, we should consider using CheerioCrawler, PuppeteerCrawler or PlaywrightCrawler.BasicCrawlerinvokes the user-providedrequestHandlerfor each Request object, which represents a single URL to crawl. The Request objects are fed from the RequestList or RequestQueue instances provided by therequestListorrequestQueueconstructor options, respectively. If neitherrequestListnorrequestQueueoptions are provided, the crawler will open the default request queue either when thecrawler.addRequests()function is called, or ifrequestsparameter (representing the initial requests) of thecrawler.run()function is provided.If both
requestListandrequestQueueoptions are used, the instance first processes URLs from the RequestList and automatically enqueues all of them to the RequestQueue before it starts their processing. This ensures that a single URL is not crawled multiple times.The crawler finishes if there are no more Request objects to crawl.
New requests are only dispatched when there is enough free CPU and memory available, using the functionality provided by the AutoscaledPool class. All AutoscaledPool configuration options can be passed to the
autoscaledPoolOptionsparameter of theBasicCrawlerconstructor. For user convenience, theminConcurrencyandmaxConcurrencyoptions of the underlying AutoscaledPool constructor are available directly in theBasicCrawlerconstructor.Example usage: