ProxyBroker icon indicating copy to clipboard operation
ProxyBroker copied to clipboard

Does proxybroker support (re)-checking queue of proxies?

Open brizzbane opened this issue 6 years ago • 1 comments

I've looked through code, and I see I can do: check = Checker([list of judges])

Then: check.check(proxy)

But it seems to only suppport checking one proxy at a time? I'm trying to find out how the code itself uses the checker, but grepping 'check' in the source folder...I'm not getting anywhere fast, so I thought I'd ask.

Is there a built in checker that supports checking a asyncio.Queue of proxies (i.e. fast, concurrent checking)?

Any help or direction would be much appreciated!

brizzbane avatar Aug 05 '19 23:08 brizzbane

I didn't digg so much on that, but in overall, proxybroker creates the async pool from given scrapped data, and checks every item in the queue one by one using that function. So, don't expect to find something like a for or while loop using it. It's on the async queue.

You can use the check feature using the CLI instead, with a list.txt with proxies using the --data parameter like proxybroker find --types HTTP HTTPS --data list.txt. This will make the work for you.

erm3nda avatar Dec 20 '19 01:12 erm3nda