Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 668 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 668 Bytes

Description

This module uses image parsing to submit a captcha response to amazon using scrapy middleware.

It is accurate roughly 60% of the time.

The middleware checks for "Robot Check" in the title of the page and if the string is found, then it attempts to decode the captcha and submit the response.

Usage

In settings.py

# Keep the middleware as close to the spiders as possible (less than 100)
DOWNLOADER_MIDDLEWARES = {
    'captchabuster.RobotMiddleware': 90
}

Installation

Clone the repository locally.

pip install -e /path/to/captchabuster/

OR

pip install git+https://github.com/ziplokk1/scrapy-amazon-robot-middleware.git