Metadata-Version: 1.2
Name: proxytest
Version: 0.2.1
Summary: A simple script to test if one or more HTTP proxies are working by fetching a webpage.
Home-page: https://github.com/yoleg/proxytest
Author: Oleg Pryadko
Author-email: oleg@olegpryadko.com
Maintainer: Oleg Pryadko
Maintainer-email: oleg@olegpryadko.com
License: MIT
Description: # proxytest
        
        Simple command-line script to check if multiple proxies are up by fetching a webpage through each.
        
        ## Installation:
        
        Requires Python 3.4 or above.
        
        ```
        pip3 install proxytest
        ```
        
        or
        
        ```
        python3 -m pip install proxytest
        ```
        
        ## Usage examples:
        
        ```
        proxytest 1.2.3.4:8080 1.2.3.4:8081
        
        proxytest 1.2.3.4:8080-8081  # same as above
        
        proxytest "http://user:pass@exampleproxy.com:3128" "111.222.333.444:8080-8082" "111.222.333.444:8085-8090" --verbose
        
        proxytest "1.2.3.4:1234" --url="https://example.com"  --print
        
        proxytest --help
        ```
        
        ## Exit codes:
        
        * 1 - invalid input
        * 2 - at least one proxy failed
        
        ## Links:
        
        https://github.com/yoleg/proxytest
        
Keywords: proxy test command multiple proxies
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
