From 164167dea0a0823845de42188818e7f80262aa71 Mon Sep 17 00:00:00 2001 From: Ivan Gabaldon Date: Sat, 20 Sep 2025 11:12:34 +0200 Subject: [mod] py: remove uvloop (#5220) We get some good stuff without uvloop, 13MB~ less of dependencies, 3 minutes of build time for armv7 saved, and we are one step closer to NT compatibility. Although it's true that theoretically the raw performance have worsened on network side (we only used uvloop for that), the latest cpython versions have been improving on asyncio performance. --- searx/network/client.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'searx/network/client.py') diff --git a/searx/network/client.py b/searx/network/client.py index bd21bc9b5..c7c07c385 100644 --- a/searx/network/client.py +++ b/searx/network/client.py @@ -13,13 +13,9 @@ import threading import httpx from httpx_socks import AsyncProxyTransport from python_socks import parse_proxy_url, ProxyConnectionError, ProxyTimeoutError, ProxyError -import uvloop from searx import logger - -uvloop.install() - CertTypes = str | tuple[str, str] | tuple[str, str, str] SslContextKeyType = tuple[str | None, CertTypes | None, bool, bool] -- cgit v1.2.3