Metadata-Version: 2.1
Name: proxyaudit
Version: 0.4
Summary: A package to fetch and check the working HTTP,HTTPS,SOCKS4,SOCKS5 proxies from a list of proxies
Home-page: https://github.com/aryanyk/proxyaudit
Author: Aryan Khandhadiya
Author-email: aryanyk562@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: asyncio
Requires-Dist: aiohttp
Requires-Dist: urllib3

Open Source Library for scraping public proxies available to be used within the project for various purposes.

This Libray fetches open available proxies and sorts them according to the currently working and removes useless working proxies . Running this script timely ensures good quality http proxies 

How to Use :
Before using it please install dependencies if it is not installed automatically:
```python

import asyncio
import aiohttp
import urllib3
import socket

```
Once this dependencies installed go to any free proxy websites. Some examples sites are : 

1.[GeoNode Free proxy List]( https://geonode.com/free-proxy-list "Link Title")

2.[ProxyScrape Free proxy List]( https://proxyscrape.com/free-proxy-list "Link Title")

Go to this websites and copy Load proxies through Url or API

Now 

pip install proxyaudit

```python


from proxyaudit import run_proxy_check

proxyurl="Url got from website paste here"

run_proxy_check(url,["http", "https","socks4","socks5"])

```
In the allowed Protocol array you can also pass one argument like: ["http"]

## Allowed Protocol
http
https
socks4
socks5

Done a txt file will be generated with all the working proxies 
