Metadata-Version: 2.1
Name: parkproxies
Version: 0.0.1
Summary: Basic, free proxy utility.
Author-email: Parker G <parkerg34@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Proxies Util

This package can be used to cycle through a list of free proxies as a way to easily obfuscate one's IP.

Create a ProxyService object like this:
`service = ProxyService(ProxyClient())`

To populate the ProxyService with a list of proxies -
`service.getProxies()`

After populating the ProxyService with proxies, filter through them by providing a dictionary of options to .filterProxies() -

```python
filters = {
    "anonymity": "anonymous",    #"anonymous" or "elite proxy"
    "code": "US",  # country code
    "google": True,  # google compatible
    "https" True,   # https compatible
}
# pass True to save filltered proxies into the ProxyService.filtered_proxies attribute
filtered_proxies = service.filterProxies(filters, True) 
```

