From 3cde5fb3aaae69436007e3f5eb2534122b33177f Mon Sep 17 00:00:00 2001 From: _00_ <131402327+rgaricano@users.noreply.github.com> Date: Sun, 13 Jul 2025 11:01:25 +0200 Subject: [PATCH] UPD: requirements.txt adding httpx Update requirements.txt to add httpx and optional support for: h2 - HTTP/2 support. (Optional, with httpx[http2]) socksio - SOCKS proxy support. (Optional, with httpx[socks]) rich - Rich terminal support. (Optional, with httpx[cli]) click - Command line client support. (Optional, with httpx[cli]) brotli or brotlicffi - Decoding for "brotli" compressed responses. (Optional, with httpx[brotli]) zstandard - Decoding for "zstd" compressed responses. (Optional, with httpx[zstd]) httpx[socks,http2,zstd,cli,brotli]==0.28.1 --- backend/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/requirements.txt b/backend/requirements.txt index 34e4036f68..5b0524efa8 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -14,6 +14,7 @@ async-timeout aiocache aiofiles starlette-compress==1.6.0 +httpx[socks,http2,zstd,cli,brotli]==0.28.1 sqlalchemy==2.0.38 alembic==1.14.0