Metadata-Version: 1.0
Name: scrapy-cloudflare-middleware
Version: 0.0.1.dev1
Summary: A Scrapy Middleware to bypass the CloudFlare's anti-bot protection
Home-page: https://github.com/clemfromspace/scrapy-cloudflare-middleware
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: [![PyPI](https://img.shields.io/pypi/v/scrapy_cloudflare_middleware.svg)](https://pypi.python.org/pypi/scrapy_cloudflare_middleware)
        
        ## Scrapy "CloudFlare" middleware
        
        A Scrapy Middleware to bypass the CloudFlare's anti-bot protection, based on [cloudflare-scrape](https://github.com/Anorov/cloudflare-scrape).
        
        ### Installation
        ```
        pip install scrapy_cloudflare_middleware
        ```
        
        ### Usage
        
        Add the middleware to your `DOWNLOADER_MIDDLEWARES` settings
        
        ```python
        DOWNLOADER_MIDDLEWARES = {
            'scraping_hub.middlewares.CloudFlareMiddleware': 560
        }
        ```
        The priority (560) is important, because we want this middleware to kick in just before the scrapy built-in `RetryMiddleware`.
        
        Done. Happy scraping !
        
        
        
        
        
        
        
Platform: UNKNOWN
