How to Install ProxyBroker
Here I will divide into several parts so as not to get confused when doing practice
1. Finding proxy
This option is to determine the proxy type you can enter HTTP, HTTPS, SOCKS
The first step is to prepare the following dependencies
1 pkg install python-dev make clang libffi-devThe second step manually install the pycares library
1. pip install cffi==1.5.0Step three install Proxybroker
2. pip download pycares
3. tar xzvf pycares-2.4.0.tar.gz
4. cd pycares-2.4.0
5. python setup.py install
1 pip install proxybrokerHow to use ProxyBroker
Here I will divide into several parts so as not to get confused when doing practice
1. Finding proxy
1 proxybroker find --types HTTP HTTPS - lvl high --country US-l 20-t or -types
This option is to determine the proxy type you can enter HTTP, HTTPS, SOCKS
-l or -lvl
This option is to choose the anonymous level you can enter Transparent, High, Elite
-c or -Country
This option is to select the target country, enter country code, for example SG (Singapore), ID (Indonesia), US (America), AU (Australia), etc.
-l or -limit
This option is to determine the limit of the number of proxies you want to search input anything i want your number to be free, and the higher the value, the later the process will also take longer
2. Take a proxy or Grabber
1 proxybroker grab --country US --limit 20 - outfile namafile.txt
-o or -outfile
This option is to store the results of the process grabber enter the file name according to your wishes For other options the same as before
3. Check Proxy
1 proxybroker serve --host 127.0.0.1 --port 8888
-h or -host
This option is to enter the ip address of the proxy you want to check
-p or -port
This option is for entering the port of the ip address
Note
If there is a Warning Depriciated output it is ignored because the writing of primitive syntax in the latest python termux (3.7.2) is different from the previous version of python Overall there is no problem. Tags: Python Tutorial Source: https://www.penyon.me/install-proxybroker-using-termux/
Comments