Metadata-Version: 1.1
Name: proxy-middleware
Version: 0.1.0
Summary: Scrapy http proxy middleware that gets proxy parameters from settings
Home-page: https://github.com/TeamHG-Memex/proxy-middleware
Author: UNKNOWN
Author-email: UNKNOWN
License: MIT
Description: proxy-middleware
        ================
        
        .. image:: https://img.shields.io/pypi/v/proxy-middleware.svg
           :target: https://pypi.python.org/pypi/proxy-middleware
           :alt: PyPI Version
        
        Scrapy middleware that reads proxy config from settings.
        
        Install::
        
            pip install proxy-middleware
        
        Usage: add it to ``DOWNLOADER_MIDDLEWARES`` in scrapy settings::
        
            DOWNLOADER_MIDDLEWARES = {
               'proxy_middleware.ProxyFromSettingsMiddleware': 10,
               ...
        
        Pass proxy config via ``HTTP_PROXY`` and ``HTTPS_PROXY`` settings
        variables. ``HTTPPROXY_AUTH_ENCODING`` is also respected::
        
            scrapy crawl my-spider -s HTTP_PROXY=http://localhost:8118
        
        License is MIT.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
