Skip to main content

Scrapy Crawlbase Proxy Middleware: Crawlbase interfacing middleware for Scrapy

Project description

Crawlbase API middleware for Scrapy

Processes Scrapy requests using Crawlbase services either with Normal or Javascript tokens

Installing

Choose a way of installing:

  • Clone the repository inside your Scrapy project and run the following:
python setup.py install
  • Or use PyPi Python package manager. pip install scrapy-crawlbase-middleware

Then in your Scrapy settings.py add the following lines:

# Activate the middleware
CRAWLBASE_ENABLED = True

# The Crawlbase API token you wish to use, either normal of javascript token
CRAWLBASE_TOKEN = 'your token'

# Enable the middleware
DOWNLOADER_MIDDLEWARES = {
    'scrapy_crawlbase.CrawlbaseMiddleware': 610
}

Usage

Use the scrapy_crawlbase.CrawlbaseRequest instead of the scrapy built-in Request. The scrapy_crawlbase.CrawlbaseRequest accepts additional arguments, used in Proxy Crawl API:

from scrapy_crawlbase import CrawlbaseRequest

class ExampleScraper(Spider):

    def start_requests(self):
        yield CrawlbaseRequest(
            "http://target-url",
            callback=self.parse_result
            device='desktop',
            country='US',
            page_wait=1000,
            ajax_wait=True,
            dont_filter=True
        )

The target url will be replaced with proxy crawl url and parameters will be encoded into the url by the middleware automatically.

If you have questions or need help using the library, please open an issue or contact us.


Copyright 2023 Crawlbase

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scrapy-crawlbase-middleware-1.0.0.tar.gz (5.0 kB view details)

Uploaded Source

File details

Details for the file scrapy-crawlbase-middleware-1.0.0.tar.gz.

File metadata

  • Download URL: scrapy-crawlbase-middleware-1.0.0.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.3 requests/2.27.1 setuptools/41.2.0 requests-toolbelt/1.0.0 tqdm/4.64.1 CPython/2.7.18

File hashes

Hashes for scrapy-crawlbase-middleware-1.0.0.tar.gz
Algorithm Hash digest
SHA256 65caf98bd4d842be76ca72420b09c04b30e9fa650b51b3572378844b742a7aff
MD5 e840a09b5454fe7bcdd74b4769aa1734
BLAKE2b-256 ea01a84968a50b3e15e77b17c97ecee416f308c5249aa9cbe76c7418da3cee5b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page