MCPcopy Index your code
hub / github.com/clemfromspace/scrapy-puppeteer

github.com/clemfromspace/scrapy-puppeteer @0.0.1a

Chat with this repo
repository ↗ · DeepWiki ↗ · release 0.0.1a ↗ · + Follow
19 symbols 58 edges 7 files 12 documented · 63%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Scrapy with Puppeteer

PyPI Build Status Test Coverage Maintainability

Scrapy middleware to handle javascript pages using puppeteer.

⚠ IN ACTIVE DEVELOPMENT - READ BEFORE USING ⚠

This is an attempt to make Scrapy and Puppeteer work together to handle Javascript-rendered pages. The design is strongly inspired of the Scrapy Splash plugin.

Scrapy and Puppeteer

The main issue when running Scrapy and Puppeteer together is that Scrapy is using Twisted and that Pyppeteeer (the python port of puppeteer we are using) is using asyncio for async stuff.

Luckily, we can use the Twisted's asyncio reactor to make the two talking with each other.

That's why you cannot use the buit-in scrapy command line (installing the default reactor), you will have to use the scrapyp one, provided by this module.

If you are running your spiders from a script, you will have to make sure you install the asyncio reactor before importing scrapy or doing anything else:

import asyncio
from twisted.internet import asyncioreactor

asyncioreactor.install(asyncio.get_event_loop())

Installation

$ pip install scrapy-puppeteer

Configuration

Add the PuppeteerMiddleware to the downloader middlewares:

DOWNLOADER_MIDDLEWARES = {
    'scrapy_puppeteer.PuppeteerMiddleware': 800
}

Usage

Use the scrapy_puppeteer.PuppeteerRequest instead of the Scrapy built-in Request like below:

from scrapy_puppeteer import PuppeteerRequest

def your_parse_method(self, response):
    # Your code...
    yield PuppeteerRequest('http://httpbin.org', self.parse_result)

The request will be then handled by puppeteer.

The selector response attribute work as usual (but contains the html processed by puppeteer).

def parse_result(self, response):
    print(response.selector.xpath('//title/@text'))

Additional arguments

The scrapy_puppeteer.PuppeteerRequest accept 2 additional arguments:

wait_until

Will be passed to the waitUntil parameter of puppeteer. Default to domcontentloaded.

wait_for

Will be passed to the waitFor to puppeteer.

screenshot

When used, puppeteer will take a screenshot of the page and the binary data of the .png captured will be added to the response meta:

yield PuppeteerRequest(
    url,
    self.parse_result,
    screenshot=True
)

def parse_result(self, response):
    with open('image.png', 'wb') as image_file:
        image_file.write(response.meta['screenshot'])

Core symbols most depended-on inside this repo

as_deferred
called by 2
scrapy_puppeteer/middlewares.py
get_requirements
called by 1
setup.py
_from_crawler
called by 1
scrapy_puppeteer/middlewares.py
_process_request
called by 1
scrapy_puppeteer/middlewares.py
_spider_closed
called by 1
scrapy_puppeteer/middlewares.py
from_crawler
called by 0
scrapy_puppeteer/middlewares.py
_handle_headers
called by 0
scrapy_puppeteer/middlewares.py
process_request
called by 0
scrapy_puppeteer/middlewares.py

Shape

Method 12
Class 4
Function 3

Languages

Python100%

Modules by API surface

scrapy_puppeteer/middlewares.py9 symbols
tests/test_middlewares.py6 symbols
scrapy_puppeteer/http.py2 symbols
setup.py1 symbols
scrapy_puppeteer/cli.py1 symbols

For agents

$ claude mcp add scrapy-puppeteer \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page