$ proxybroker serve --host 127.0.0.1 --port 8888 --types HTTP HTTPS --lvl High
c:\users\niran\appdata\local\programs\python\python38-32\lib\site-packages\proxybroker\cli.py:380: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.
proxies = asyncio.Queue(loop=loop)
c:\users\niran\appdata\local\programs\python\python38-32\lib\asyncio\queues.py:48: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.
self._finished = locks.Event(loop=loop)
c:\users\niran\appdata\local\programs\python\python38-32\lib\site-packages\proxybroker\api.py:97: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.
self._on_check = asyncio.Queue(maxsize=max_conn, loop=self._loop)
c:\users\niran\appdata\local\programs\python\python38-32\lib\asyncio\events.py:81: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.
self._context.run(self._callback, *self._args)
Server started at http://127.0.0.1:8888
c:\users\niran\appdata\local\programs\python\python38-32\lib\site-packages\aiohttp\connector.py:964: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.
hosts = await asyncio.shield(self._resolve_host(
c:\users\niran\appdata\local\programs\python\python38-32\lib\site-packages\aiohttp\locks.py:21: DeprecationWarning: The loop argument is deprecated since
Python 3.8, and scheduled for removal in Python 3.10.
self._event = asyncio.Event(loop=loop)
When I change my proxy manually to the addr(127.0.0.1:8888 -- that i provided in my 'serve' command; top-line) , I loose internet connection. Basically not getting connected.
Also while simply navigating to the addr(127.0.0.1:8888 ) the page keeps on loading forever - in the anticlockwise direction.
$ proxybroker serve --host 127.0.0.1 --port 8888 --types HTTP HTTPS --lvl High c:\users\niran\appdata\local\programs\python\python38-32\lib\site-packages\proxybroker\cli.py:380: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10. proxies = asyncio.Queue(loop=loop) c:\users\niran\appdata\local\programs\python\python38-32\lib\asyncio\queues.py:48: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10. self._finished = locks.Event(loop=loop) c:\users\niran\appdata\local\programs\python\python38-32\lib\site-packages\proxybroker\api.py:97: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10. self._on_check = asyncio.Queue(maxsize=max_conn, loop=self._loop) c:\users\niran\appdata\local\programs\python\python38-32\lib\asyncio\events.py:81: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10. self._context.run(self._callback, *self._args) Server started at http://127.0.0.1:8888 c:\users\niran\appdata\local\programs\python\python38-32\lib\site-packages\aiohttp\connector.py:964: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10. hosts = await asyncio.shield(self._resolve_host( c:\users\niran\appdata\local\programs\python\python38-32\lib\site-packages\aiohttp\locks.py:21: DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10. self._event = asyncio.Event(loop=loop)
When I change my proxy manually to the addr(127.0.0.1:8888 -- that i provided in my 'serve' command; top-line) , I loose internet connection. Basically not getting connected. Also while simply navigating to the addr(127.0.0.1:8888 ) the page keeps on loading forever - in the anticlockwise direction.