From 165698c7a3ab9e3dd09164d42b9baaa856f49dc4 Mon Sep 17 00:00:00 2001 From: Voge1imkafig <2390349500@qq.com> Date: Tue, 22 Jul 2025 18:04:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E9=A2=9D=E5=A4=96=E7=9A=84?= =?UTF-8?q?=E6=89=93=E5=8D=B0=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/Get_Json.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/Get_Json.py b/tools/Get_Json.py index 6ca7672..0b1efc6 100644 --- a/tools/Get_Json.py +++ b/tools/Get_Json.py @@ -10,7 +10,6 @@ def get_data(url : str, data_type : str = "data", params : dict = None ) -> dict response = requests.get(url, headers=headers, params=params) if response.status_code == 200: data = json.loads(response.text) - print(f"获取到数据:{data}") return data[data_type] else: print(f"请求数据失败,状态码:{response.status_code}")