You can check the availability of the proxy.
Project description
Proxy Checker Mp
How to use ?
1-) Module Install and Import
- Install Module
pip install proxyCheck-mp
pip3 install proxyCheck-mp
- Import Module
from proxyChecker.proxyCheck import ProxyController
2-) proxyController class must be called.
prxCont = ProxyController()
3-) User-agent default value and reassign.
Default Value ;
getDefaultUseragent() --> "windows"
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36"
Assigning a new value ;
prxCont = ProxyController()
#First method
prxCont.userAgent = 'Mozilla/5.0 (Linux; U; Android 2.2) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1'
#Second method
prxCont.userAgent = getDefaultUseragent("linux") --> linux user-agent
#Operating systems defined in the getDefaultUseragent() method. --> Windows,Linux,Macos,Android,Iphone,Ipad,Ipod
#Third method
prxCont.userAgent = randomUserAgent() --> a random user-agent
# When this method calls, it fetches a random user agent from the thousand-element list.
3-) The proxyControl method bound to the proxyController class must be called.
prxCont.proxyControl(proxys , url , timeout , details)
Parameter Details ;
proxies -> Proxies parameter must be list or str. (List or String)
url -> Give url to check proxy. (https-http) Default = https://www.google.com
timeout -> Set a waiting time to connect. Default timeout = (3.05,27) >> (connect,read)
details -> Information message about whether the proxy is working or not. (True or False) Default = True
4-) Output - Positive
prxCont = ProxyController()
proxy = '52.143.130.19:3128'
print(prxCont.proxyControl(proxy))
#output _>
Protocol : http - Connection Successfull - 52.143.130.19:3128
proxyIp : 52.143.130.19 -- proxyType : IPv4 -- country : France -- timeOut : 0.43 second
Proxy check completed.
52.143.130.19:3128
print(prxCont.proxyControl(proxyList,detail=False))
#output2 _>
Proxy check completed.
52.143.130.19:3128
4-) Output - Negative
prxCont = ProxyController()
proxyList = ["0.0.0.0:18","1.1.1.1:80","11.11.11.11:8080"]
prxCont.proxyControl(proxyList)
#output _>
Protocol : http - The connection is unstable - 0.0.0.0:18
Protocol : socks4 - The connection is unstable - 0.0.0.0:18
Protocol : socks5 - The connection is unstable - 0.0.0.0:18
Protocol : http - The connection is unstable - 1.1.1.1:80
Protocol : socks4 - The connection is unstable - 1.1.1.1:80
Protocol : socks5 - The connection is unstable - 1.1.1.1:80
Protocol : http - The connection is unstable - 11.11.11.11:8080
Protocol : socks4 - The connection is unstable - 11.11.11.11:8080
Protocol : socks5 - The connection is unstable - 11.11.11.11:8080
Proxy check completed.
None of the proxies you provided are working.
prxCont.proxyControl(proxyList,detail=False)
#output2 _>
Proxy check completed.
None of the proxies you provided are working.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
proxyCheck_mp-0.0.6.tar.gz
(14.3 kB
view hashes)
Built Distribution
Close
Hashes for proxyCheck_mp-0.0.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fc70cd53a577dc9555c60d3a67876fc366990d2761f6d1e59a34335e04eb315 |
|
MD5 | 36ed6d9af45dbf9a1ac34c2d1ddaa038 |
|
BLAKE2b-256 | 06958a0ece7d7f23756f62554745f27c9f93f9ef23bc396d7fdf08c71b1d8f5a |