From 771db1d7737e55e36a5dd8da00183a6a7afc8785 Mon Sep 17 00:00:00 2001
From: Administrator <admin@example.com>
Date: 星期三, 14 五月 2025 14:13:00 +0800
Subject: [PATCH] bug修复

---
 third_data/kpl_api.py |   38 +++++++++++++++++++++++++++++++++++---
 1 files changed, 35 insertions(+), 3 deletions(-)

diff --git a/third_data/kpl_api.py b/third_data/kpl_api.py
index f0c6e87..618d1f9 100644
--- a/third_data/kpl_api.py
+++ b/third_data/kpl_api.py
@@ -5,7 +5,7 @@
 
 import constant
 from third_data import kpl_util
-from utils import middle_api_protocol
+from utils import middle_api_protocol, tool
 
 # 绔炰环
 DABAN_TYPE_BIDDING = 8
@@ -299,6 +299,38 @@
     return int(data["info"]["strong"])
 
 
+def request_new_blocks_codes(blocks_info):
+    """
+    璇锋眰鏂版澘鍧楃殑浠g爜
+    @param blocks_info:[(鏉垮潡鍚嶇О,鏉垮潡浠g爜)]
+    @return:
+    """
+    yesterday_codes = set()
+    for bi in blocks_info:
+        result = getCodesByPlate(bi[1])
+        result = json.loads(result)
+        code_info_list = []
+        for d in result["list"]:
+            if d[0] in yesterday_codes:
+                continue
+            # 娑ㄥ箙瑕佸ぇ浜�5%
+            rate = d[6] / int(round((tool.get_limit_up_rate(d[0]) - 1) * 10))
+            if rate < 5:
+                continue
+            # 鏍煎紡锛�(浠g爜,娑ㄥ箙)
+            code_info_list.append((d[0], d[6]))
+        if code_info_list:
+            # 灏嗕唬鐮佸姞鍏ユ柊棰樻潗
+            for x in code_info_list:
+                print("娣诲姞", x)
+
+
 if __name__ == "__main__":
-    result = getMarketStrong()
-    print(result)
+    print(getZYLTAmount("601288"))
+    # request_new_blocks_codes([("鏈哄櫒浜�", "801159")])
+    # result = getCodesByPlate("801159")  # getHistoryLimitUpInfo("2024-02-19")
+    # result = json.loads(result)
+    # for d in result["list"]:
+    #     print(d)
+    #
+    # print(result)

--
Gitblit v1.8.0