A library to use Puppeteer-managed browser in Scrapy spiders
Project description
scrapy-puppeteer-client
This package aims to manage Chrome browser with Puppeteer from Scrapy spiders. This allows to scrape sites that require JS to function properly and to make the scraper more similar to humans. It is a client library for scrapy-puppeteer-service.
⚠️ This repository is under development.
This project is under development. Use it at your own risk.
Installation
Using pip (master branch):
$ pip install scrapy-puppeteer-client
Configuration
You should have scrapy-puppeteer-service started.
Then add its URL to settings.py
and enable puppeteer downloader middleware:
DOWNLOADER_MIDDLEWARES = {
'scrapypuppeteer.middleware.PuppeteerServiceDownloaderMiddleware': 1042
}
PUPPETEER_SERVICE_URL = 'http://localhost:3000'
Basic usage
Use scrapypuppeteer.PuppeteerRequest
instead of scrapy.Request
to render URLs with Puppeteer:
import scrapy
from scrapypuppeteer import PuppeteerRequest
class MySpider(scrapy.Spider):
...
def start_requests(self):
yield PuppeteerRequest('https://exapmle.com', callback=self.parse)
def parse(self, response):
links = response.css(...)
...
Advanced usage
PuppeteerRequest
's first argument is a browser action.
Avalable actions are defined in scrapypuppeteer.actions
module as subclasses of PuppeteerServiceAction
.
Passing a URL into request is a shortcut for GoTo(url)
action.
Here is the list of available actions:
GoTo(url, options)
- navigate to URLGoForward(options)
- navigate forward in historyGoBack(options)
- navigate back in historyClick(selector, click_options, wait_options)
- click on element on pageScroll(selector, wait_options)
- scroll pageScreenshot(options)
- take screenshotRecaptchaSolver(solve_recaptcha)
- find or solve recaptcha on pageCustomJsAction(js_function)
- evaluate JS function on page
Available options essentially mirror service method parameters, which in turn mirror puppeteer API functions to some extent.
See scrapypuppeteer.actions
module for details.
You may pass close_page=False
option to a request to retain browser tab and its state after request's completion.
Then use response.follow
to continue interacting with the same tab:
import scrapy
from scrapypuppeteer import PuppeteerRequest
from scrapypuppeteer.actions import Click
class MySpider(scrapy.Spider):
...
def start_requests(self):
yield PuppeteerRequest('https://exapmle.com', close_page=False, callback=self.parse)
def parse(self, response):
...
# parse and yield some items
...
next_page_selector = 'button.next-page-or-smth'
if response.css(next_page_selector ):
yield response.follow(Click(next_page_selector ,
wait_options={'selectorOrTimeout': 3000}), # wait 3 seconds
close_page=False,
callback=self.parse)
On your first request service will create new incognito browser context and new page in it.
Their ids will be in returned in response object as context_id
and page_id
attributes.
Following such response means passing context and page ids to next request.
You also may specify requests context and page ids directly.
Once your spider is closed, middleware will take care of closing all used browser contexts.
One may customize which PuppeteerRequest
's headers will be sent to remote website by the service
via include_headers
attribute in request or globally with PUPPETEER_INCLUDE_HEADERS
setting.
Available values are True (all headers), False (no headers) or list of header names.
By default, only cookies are sent.
Automatic recaptcha solving
Enable PuppeteerRecaptchaDownloaderMiddleware to automatically solve recaptcha during scraping. We do not recommend to use RecaptchaSolver action when the middleware works.
DOWNLOADER_MIDDLEWARES = {
'scrapypuppeteer.middleware.PuppeteerRecaptchaDownloaderMiddleware': 1041,
'scrapypuppeteer.middleware.PuppeteerServiceDownloaderMiddleware': 1042
}
Note that the number of RecaptchaMiddleware has to be lower than ServiceMiddleware's. You must provide some settings to use the middleware:
RECAPTCHA_ACTIVATION = True # Enables the middleware
RECAPTCHA_SOLVING = False # Automatic recaptcha solving
RECAPTCHA_SUBMIT_SELECTORS = { # Selectors for "submit recaptcha" button
'www.google.com/recaptcha/api2/demo': '', # No selectors needed
}
If you set RECAPTCHA_SOLVING to False the middleware will try to find captcha and will notify you about number of found captchas on the page.
TODO
- skeleton that could handle goto, click, scroll, and actions
- headers and cookies management
- proxy support for puppeteer
- error handling for requests
- har support
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for scrapy-puppeteer-client-0.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2cc5f07b90b69f90c039310a67197c8317667fd2fb48d8a87cd0cfd100dbe7c |
|
MD5 | d9fe16024f8de875e257da3ac3abef73 |
|
BLAKE2b-256 | 43cfc99a64f9764e386b10cebf268f2c31945f583e34355e4a3122aa127a07dc |
Hashes for scrapy_puppeteer_client-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52f032aa416b9234a6b85e862c5852119910b1ebc052add7bdb334307ab67808 |
|
MD5 | 273946fbe47d0835c0a4e925eac89d97 |
|
BLAKE2b-256 | dca4d5b39feef8bf9394ba90395befa5b0dd81337f4c92360bbe00eea4eaa97a |