Metadata-Version: 2.1
Name: proxy-inspector
Version: 0.0.5
Summary: An Simple Tool for Validate Proxy
Home-page: https://github.com/HostenWang/proxy-inspector
Author: HostenWang
Author-email: hostenwang@foxmail.com
Maintainer: 
Maintainer-email: 
Keywords: python proxy network validate
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: System :: Networking
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: grequests ~=0.6.0
Requires-Dist: requests ~=2.28.1

# proxy-inspector

A tool for quickly verifying the availability of proxy IP 

## Usage

```python
>> from proxy_inspector import ProxyInspector
>> checker = ProxyInspector()
>> proxies = checker.validate("https://www.google.com", ["https://MY_PROXY_1", "https://MY_PROXY_2", "https://MY-PROXY-3"])
>> print(proxies)

["https://MY_PROXY_1", "https://MY_PROXY_2", "https://MY-PROXY-3"]
```
