Ziloka

Results 35 comments of Ziloka

This [solution](https://stackoverflow.com/a/59512181) worked for me

This package seems a bit unmaintained

I had to download a favicon.ico file to the assets folder. Eg since I knew iopaint was installed in this directory `C:\Users\ziloka\.pyenv\pyenv-win\versions\3.10.6\Lib\site-packages\iopaint\web_app\assets` I downloaded a png and saved it as...

This seems to work ```py """Find and show 10 working HTTP(S) proxies.""" import asyncio from proxybroker import Broker async def show(proxies): while True: proxy = await proxies.get() if proxy is...

the reason is because you need to pass the loop into the Broker constructor. On python 3.10 it seems like theres a deprecation warning that I did not think of...

https://github.com/bluet/proxybroker2/commit/a2715be8e516e67babd7139d965477fc12a764df now that i think about it, i unintentionally broke the examples

so the example actually works, i just need a change to be made to fix the thing I didn't know i broke

Related #110 Merge this and the basic example should work without any changes EDIT: tested on 3.8, and 3.10

Heres what it would look like ```yml version: "3.9" # optional since v1.27.0 services: proxybroker2: image: bluet/proxybroker2 command: serve --host 127.0.0.1 --port 8888 --types HTTP HTTPS --lvl High --min-queue 5...

The temporary failure of name resolution.. I believe something is end on your end. The --log DEBUG argument is suppose to be before the subcommand eg `proxybroker --log DEBUG update-geo`...