request-boost
request-boost copied to clipboard
Proxy support
Is it possible to support proxies?
https://requests.readthedocs.io/en/latest/user/advanced/#proxies
This looks like something that will be extremely useful, if you want you(@valankar ) can try adding this feature and I will review your pull request!
@talhajunaidd @THE-COB @giubaru Can you guys also look at this?
@singhsidhukuldeep @valankar please check the PR https://github.com/singhsidhukuldeep/request-boost/pull/8
Add possibility to define multiple proxies through parameters so each request will use differend proxy with differend protocols same as urls parameter, if you planning to implement this. Example:
proxies = [
{
"http": "socks5://127.0.0.1:8080",
"https": "socks5://127.0.0.1:8080"
},
{
"http": "socks4://127.0.0.1:3333",
"https": "socks4://127.0.0.1:3333"
}]
response = boost_requests(urls=urls, proxies=proxies)
If need help. I can do it myself, just let me know it. Thank you