2 projects that i work on them - PyProxyToolkit & QProxyCheckerLib

revproxy

BANNED
Joined
Nov 20, 2015
Messages
393
Reaction score
106
Hi,
In last few weeks i work on 2 open source project that i want to share with
the community and hope more people will contribute.

PyProxyToolkit
https://github.com/garrylachman/PyProxyToolkitFast multi-threaded proxy checker based on strategies. Currently only 2 strategies are implemented but its very simple add more.

Strategy provide the request url that we use with the proxy request and the matching logic against the response.
Strategies: httpbinStrategy (validate ip, default), googleStrategy (validate if banned on google)

Works on python 3+ only


QProxyCheckerLib
https://github.com/garrylachman/QProxyCheckerLibProxy Checker Lib for QT C++, its provide easy interface to check if the proxy alive & anonymity level.
In next steps i want to add benchmarking, geo locations & ip details

Both projects released under GNU/LGPL.


Thanks,
Garry
 
Update: i added google strategy. its check if the proxy is blocked on Google Search and the option to select the strategy from command line.

Thanks :)
 
Update: i added google strategy. its check if the proxy is blocked on Google Search and the option to select the strategy from command line.

Thanks :)

What all logic do you put in place to check if a proxy is banned on Google? Check for captcha? A certain message perhaps? I'm curious what you use to determine if it's banned or not.
 
Every strategy has own class and own logic..
this is google strategy:
https://github.com/garrylachman/PyProxyToolkit/blob/master/PyProxyToolkit/strategies/googleStrategy.py

as i said... its very early version and i will be happy to get some help with code contribute...
 
Back
Top