admin
2024-06-21 e15f8d3a986b9e8ccea31d28e0f7e26ac73d85b5
1
2
3
4
5
6
7
8
9
10
11
12
LOG_DIR = "D:/logs"
import platform
 
KPL_INVALID_BLOCKS = {"一季报增长", "二季报增长", "三季报增长", "四季报增长", "业绩增长", "中报增长", "年报增长", "年报预增", "无", "次新股", "ST摘帽", "超跌",
                      "股权转让", "并购重组", "再融资", "年报预增", " 专精特新", "壳资源", "行业龙头", "科创板", "实控人变更"}
 
 
def is_windows():
    system = platform.system()
    if system == 'Windows':
        return True
    return False