From df2713e62b6ac0b067713d187bcbacd3baf0c88b Mon Sep 17 00:00:00 2001
From: zhangkai <2403741920@qq.com>
Date: Wed, 27 Aug 2025 22:00:33 +0800
Subject: [PATCH] =?UTF-8?q?ai=20=E5=BC=80=E5=A7=8B=E6=B5=8B=E8=AF=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.idea/git_toolbox_prj.xml | 15 +++++++++++++++
.idea/workspace.xml | 28 +++++++++++++++-------------
Entity/Variables.py | 2 +-
Utils/Requester.py | 5 +----
4 files changed, 32 insertions(+), 18 deletions(-)
create mode 100644 .idea/git_toolbox_prj.xml
diff --git a/.idea/git_toolbox_prj.xml b/.idea/git_toolbox_prj.xml
new file mode 100644
index 0000000..02b915b
--- /dev/null
+++ b/.idea/git_toolbox_prj.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 874684b..f0860bd 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,21 +4,10 @@
-
-
-
-
-
-
-
+
-
-
-
-
-
@@ -174,8 +163,17 @@
-
+
+
+
+ 1756303135240
+
+
+
+ 1756303135240
+
+
@@ -184,6 +182,10 @@
+
+
+
+
diff --git a/Entity/Variables.py b/Entity/Variables.py
index 2ba3109..b297ef1 100644
--- a/Entity/Variables.py
+++ b/Entity/Variables.py
@@ -10,7 +10,7 @@ anchorList: list[AnchorModel] = []
# 线程锁
anchorListLock = threading.Lock()
# 打招呼数据
-prologueList = ["hello"]
+prologueList = []
# 评论列表
commentsList = []
# 存储主播名和session_id的字典
diff --git a/Utils/Requester.py b/Utils/Requester.py
index 6a13702..d974b65 100644
--- a/Utils/Requester.py
+++ b/Utils/Requester.py
@@ -17,12 +17,9 @@ class Requester():
url = BaseUrl + cls.prologue
result = requests.get(headers=headers, url=url)
json = result.json()
- print("json",json
- )
data = json.get("data")
- print("返回的数据",data)
for i in data:
- prologueList.append("hello")
+ prologueList.append(i)
# 翻译