scrapy-amazon-robot-middleware-jondot

Scrapy middleware module which uses image parsing to submit a captcha response to amazon.


License
Other
Install
pip install scrapy-amazon-robot-middleware-jondot==0.2.5

Documentation

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