Metadata-Version: 2.4
Name: scrapy-oxylabs-proxy
Version: 0.1.0
Summary: Scrapy middleware for Oxylabs Web Scraper API in proxy mode
Author: Abdul Nazar
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Scrapy
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Scrapy Oxylabs Proxy Middleware

Use Oxylabs Web Scraper API in proxy mode with your Scrapy spiders.

## Installation

```bash
pip install scrapy-oxylabs-proxy
```

## Usage

In `settings.py` of your Scrapy project:

```python
DOWNLOADER_MIDDLEWARES = {
    'scrapy_oxylabs_proxy.middleware.OxylabsWebScraperApiProxyMiddleware': 350,
}

OXYLABS_WS_USER = 'your_oxylabs_username'
OXYLABS_WS_PASSWORD = 'your_oxylabs_password'
OXYLABS_WS_ENDPOINT = 'https://realtime.oxylabs.io:60000'
```
