From 475de20d321040f00c4f67e89941ec931667e200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D0=BE=D0=B2=20=D0=9B=D0=B5=D0=B2=20?= =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B5=D0=B2=D0=B8=D1=87?= Date: Sat, 2 May 2026 20:44:36 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=BD=D0=B8=D1=86=D0=B8=D0=B0=D0=BB?= =?UTF-8?q?=D0=B8=D0=B7=D0=B0=D1=86=D0=B8=D1=8F=20=D0=BF=D1=80=D0=BE=D0=B5?= =?UTF-8?q?=D0=BA=D1=82=D0=B0=20network-lab?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 +++ README.md | 6 ++++++ requirements.txt | 5 +++++ 3 files changed, 14 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d360baf --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.venv/ +__pycache__/ +token.env diff --git a/README.md b/README.md new file mode 100644 index 0000000..2d7247c --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +## Работа №3 +Сетевые соединения в Python +- TCP/UDP клиент-сервер +- Wireshark анализ +- HTTP запросы +- API Gitea diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..ed41b5e --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +certifi==2026.4.22 +charset-normalizer==3.4.7 +idna==3.13 +requests==2.33.1 +urllib3==2.6.3