From d9f2c5e7be1d775045bb84528533cf3686909725 Mon Sep 17 00:00:00 2001 From: Julia-lab-dotcom Date: Wed, 29 Oct 2025 21:50:12 +0300 Subject: [PATCH] Create requirements.txt Add Python dependencies file with required packages for Telegram bot and GigaChat API integration --- requirements.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000..99212456729c7 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,14 @@ +# Telegram Bot Framework +aiogram==3.5.0 + +# HTTP Client for API calls +httpx==0.27.0 + +# Environment variables management +python-dotenv==1.0.0 + +# Async utilities +aiofiles==23.2.1 + +# Optional: For better logging +colorama==0.4.6