Proxy Proxy-List-Scrapper

wytrom

Заглянувший
Заглянувший
wytrom

wytrom

Заглянувший
Заглянувший
Сообщения
33
Реакции
45
Proxy List Scrapper from various websites. They gives the free proxies for temporary use.What is a proxy
A proxy is server that acts like a gateway or intermediary between any device and the rest of the internet. A proxy accepts and forwards connection requests, then returns data for those requests. This is the basic definition, which is quite limited, because there are dozens of unique proxy types with their own distinct configurations.

What are the most popular types of proxies:
Residential proxies, Datacenter proxies, Anonymous proxies, Transparent proxies

People use proxies to:
Avoid Geo-restrictions, Protect Privacy and Increase Security, Avoid Firewalls and Bans, Automate Online Processes, Use Multiple Accounts and Gather Data

Chrome Extension in here
you can download the chrome extension "Free Proxy List Scrapper Chrome Extension" folder and load in the extension.

GOTO CHROME EXTENSION .
Web_Scrapper Module
Web Scrapper is proxy web scraper using proxy rotating api
you can check official documentation from

YOU CAN SEND REQUEST TO ANY WEBPAGES WITH PROXY GATEWAY & WEB API PROVIDED BY SCRAPE.DO


## How to use Proxy List Scrapper You can clone this project from github. or use
pip install Proxy-List-Scrapper

Make sure you have installed the requests and urllib3 in python

in import add

from Proxy_List_Scrapper import Scrapper, Proxy, ScrapperException

After that simply create an object of Scrapper class as "scrapper"

scrapper = Scrapper(category=Category, print_err_trace=False)

Here Your need to specify category defined as below:

SSL = ' ',
GOOGLE = ' ',
ANANY = ' ',
UK = ' ',
US = ' ',
NEW = ' ',
SPYS_ME = ' ',
PROXYSCRAPE = ' ',
PROXYNOVA = ' '
PROXYLIST_DOWNLOAD_HTTP = ' '
PROXYLIST_DOWNLOAD_HTTPS = ' '
PROXYLIST_DOWNLOAD_SOCKS4 = ' '
PROXYLIST_DOWNLOAD_SOCKS5 = ' '
ALL = 'ALL'

These are all categories.
After you have to call a function named "getProxies"

# Get ALL Proxies According to your Choice
data = scrapper.getProxies()

the data will be returned by the above function the data is having the response data of function.
in data having proxies,len,category

  • @proxies is the list of Proxy Class which has actual proxy.
  • @len is the count of total proxies in @proxies.
  • @category is the category of proxies defined above.

You can handle the response data as below
# Print These Scrapped Proxies
print("Scrapped Proxies:")
for item in data.proxies:
print('{}:{}'.format(item.ip, item.port))

# Print the size of proxies scrapped
print("Total Proxies")
print(data.len)

# Print the Category of proxy from which you scrapped
print("Category of the Proxy")
print(data.category)




1615698528505.png
 

Сверху Снизу