siat 3.4.37__py3-none-any.whl → 3.5.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- siat/common.py +230 -0
- siat/fund_china.py +5 -2
- siat/grafix.py +15 -2
- siat/risk_adjusted_return2.py +50 -40
- siat/sector_china.py +351 -114
- siat/security_price2.py +1 -0
- siat/security_prices.py +44 -11
- siat/security_trend2.py +17 -8
- siat/stock.py +88 -36
- siat/stock_technical.py +6 -6
- siat/translate.py +411 -161
- siat/translate_241003_keep.py +4300 -0
- siat/valuation.py +21 -7
- siat/valuation_china.py +54 -18
- {siat-3.4.37.dist-info → siat-3.5.2.dist-info}/METADATA +1 -1
- {siat-3.4.37.dist-info → siat-3.5.2.dist-info}/RECORD +19 -18
- {siat-3.4.37.dist-info → siat-3.5.2.dist-info}/WHEEL +1 -1
- {siat-3.4.37.dist-info → siat-3.5.2.dist-info}/LICENSE +0 -0
- {siat-3.4.37.dist-info → siat-3.5.2.dist-info}/top_level.txt +0 -0
siat/valuation.py
CHANGED
@@ -718,11 +718,13 @@ if __name__=='__main__':
|
|
718
718
|
tickers='光伏设备(申万)'
|
719
719
|
tickers='中证500'
|
720
720
|
tickers='801735.SW'
|
721
|
+
tickers='801853.SW'
|
721
722
|
|
722
723
|
tickers=['PZU.PL','WIG.PL']
|
723
724
|
tickers=['PZU.PL','JD','600519.SS','00700.HK','801735.SW','光伏设备(申万)','中证500']
|
724
725
|
|
725
726
|
indicators='PE'
|
727
|
+
indicators='PB'
|
726
728
|
indicators=['pe','pb']
|
727
729
|
indicators=['pe','pb','mv']
|
728
730
|
indicators='ROE'
|
@@ -802,8 +804,20 @@ def get_valuation(tickers,indicators,start,end):
|
|
802
804
|
dft=get_stock_valuation_pl(t1,indicators1,start,end)
|
803
805
|
if dft is not None: gotit=True
|
804
806
|
|
805
|
-
#
|
806
|
-
|
807
|
+
# 行业指数代码?
|
808
|
+
suffix_list=['SW','SI',#申万行业
|
809
|
+
'GI',#谷歌
|
810
|
+
'CSI',#中证
|
811
|
+
'CNI',#国证
|
812
|
+
'SH','SZ','BJ',#沪深京交易所
|
813
|
+
'WI',#万得
|
814
|
+
'HI',#恒生
|
815
|
+
'SPI',#标普
|
816
|
+
'MI',#MSCI
|
817
|
+
'BO',#孟买
|
818
|
+
]
|
819
|
+
if not gotit and (result and suffix in suffix_list) and not ROE_flag:
|
820
|
+
|
807
821
|
#dft=get_index_valuation_funddb(t1,indicators1,start,end)
|
808
822
|
indicator1=indicators1[0]
|
809
823
|
dft0=industry_valuation_history_sw(industry=t1,
|
@@ -981,7 +995,7 @@ def security_valuation(tickers,indicators,start,end, \
|
|
981
995
|
footnote1="注:市值金额:十亿,当地货币单位\n"
|
982
996
|
|
983
997
|
todaydt = datetime.date.today()
|
984
|
-
footnote9="数据来源:
|
998
|
+
footnote9="数据来源: Baidu/Stooq/FundDB/SWHY,"+str(todaydt)
|
985
999
|
footnote=footnote1+footnote9
|
986
1000
|
|
987
1001
|
draw_lines(df2,y_label=ylabeltxt,x_label=footnote, \
|
@@ -1009,7 +1023,7 @@ def security_valuation(tickers,indicators,start,end, \
|
|
1009
1023
|
footnote1="注:市值金额:十亿,当地货币单位\n"
|
1010
1024
|
|
1011
1025
|
todaydt = datetime.date.today()
|
1012
|
-
footnote9="数据来源:
|
1026
|
+
footnote9="数据来源: Baidu/Stooq/FundDB/SWHY,"+str(todaydt)
|
1013
1027
|
footnote=footnote1+footnote9
|
1014
1028
|
|
1015
1029
|
df2_1.rename(columns={i1:ectranslate(i1)},inplace=True)
|
@@ -1043,7 +1057,7 @@ def security_valuation(tickers,indicators,start,end, \
|
|
1043
1057
|
footnote1="注:市值金额:十亿,当地货币单位\n"
|
1044
1058
|
|
1045
1059
|
todaydt = datetime.date.today()
|
1046
|
-
footnote9="数据来源:
|
1060
|
+
footnote9="数据来源: Baidu/Stooq/FundDB/SWHY,"+str(todaydt)
|
1047
1061
|
footnote=footnote1+footnote9
|
1048
1062
|
|
1049
1063
|
colname1=i; label1=t1
|
@@ -1078,7 +1092,7 @@ def security_valuation(tickers,indicators,start,end, \
|
|
1078
1092
|
footnote1="注:市值金额:十亿,当地货币单位\n"
|
1079
1093
|
|
1080
1094
|
todaydt = datetime.date.today()
|
1081
|
-
footnote9="数据来源:
|
1095
|
+
footnote9="数据来源: Baidu/Stooq/FundDB/SWHY,"+str(todaydt)
|
1082
1096
|
footnote=footnote1+footnote9
|
1083
1097
|
|
1084
1098
|
#ylabeltxt=i
|
@@ -1123,7 +1137,7 @@ def security_valuation(tickers,indicators,start,end, \
|
|
1123
1137
|
footnote1="注:市值金额:十亿,当地货币单位\n"
|
1124
1138
|
|
1125
1139
|
todaydt = datetime.date.today()
|
1126
|
-
footnote9="数据来源:
|
1140
|
+
footnote9="数据来源: Baidu/Stooq/FundDB/SWHY,"+str(todaydt)
|
1127
1141
|
footnote=footnote1+footnote9
|
1128
1142
|
|
1129
1143
|
#ylabeltxt=''
|
siat/valuation_china.py
CHANGED
@@ -432,10 +432,11 @@ if __name__=='__main__':
|
|
432
432
|
#==============================================================================
|
433
433
|
if __name__=='__main__':
|
434
434
|
industry='食品饮料'
|
435
|
-
|
436
435
|
industry='生猪养殖'
|
437
|
-
|
438
436
|
industry='国防军工'
|
437
|
+
|
438
|
+
industry='801853.SW'
|
439
|
+
|
439
440
|
start='2021-1-1'
|
440
441
|
end='2022-11-15'
|
441
442
|
vtype='PE'
|
@@ -443,12 +444,18 @@ if __name__=='__main__':
|
|
443
444
|
graph=True
|
444
445
|
loc='best'
|
445
446
|
|
447
|
+
df=industry_valuation_history_sw_daily(industry,start,end,vtype)
|
448
|
+
|
446
449
|
def industry_valuation_history_sw_daily(industry,start,end,vtype='PE', \
|
447
|
-
graph=True,loc='best'
|
450
|
+
graph=True,loc='best', \
|
451
|
+
error_message=True):
|
448
452
|
"""
|
449
453
|
功能:绘制一个申万行业的日历史估值趋势,不支持二级三级行业分类
|
450
454
|
vtype: PE, PB, dividend
|
451
455
|
|
456
|
+
*** 注意:必须安装插件ipywidgets
|
457
|
+
如果出现下列错误信息:Error displaying widget: model not found
|
458
|
+
先卸载再重新安装插件ipywidgets
|
452
459
|
"""
|
453
460
|
#检查日期期间
|
454
461
|
result,start1,end1=check_period(start,end)
|
@@ -469,14 +476,35 @@ def industry_valuation_history_sw_daily(industry,start,end,vtype='PE', \
|
|
469
476
|
pos=vtypelist.index(vtypeu)
|
470
477
|
vtypes=typelist[pos]
|
471
478
|
|
479
|
+
# 适配industry名称/代码
|
480
|
+
industry_split=industry.split('.')
|
481
|
+
split1=industry.split('.')[0]
|
482
|
+
split1_name=industry_sw_code(split1)
|
483
|
+
|
484
|
+
#industry情形1:无后缀,名称
|
485
|
+
if len(industry_split)==1 and not split1.isdigit():
|
486
|
+
|
487
|
+
if not split1_name is None: #是申万名称
|
488
|
+
sindustry=industry+'(申万)'
|
489
|
+
else: #不是申万名称
|
490
|
+
sindustry=industry
|
491
|
+
#industry情形2:数字
|
492
|
+
else:
|
493
|
+
if not split1_name is None: #是申万代码
|
494
|
+
sindustry=industry_sw_name(split1)+'(申万)'
|
495
|
+
else: #不是申万代码
|
496
|
+
index_val=ak.index_value_name_funddb()
|
497
|
+
sindustry=index_val[index_val['指数代码']==industry]['指数名称'].values[0]
|
498
|
+
|
472
499
|
# 获取行业估值历史数据
|
473
500
|
import akshare as ak
|
474
|
-
sindustry=industry+'(申万)'
|
475
501
|
try:
|
476
|
-
#
|
502
|
+
# symbol:指数名称,申万行业名称需要加后缀(申万),仅支持申万一级行业和部分二级行业,不支持申万三级行业
|
503
|
+
# 支持的指数查看:ak.index_value_name_funddb()
|
477
504
|
df = ak.index_value_hist_funddb(symbol=sindustry, indicator=vtypes)
|
478
505
|
except:
|
479
|
-
|
506
|
+
if error_message:
|
507
|
+
print(" #Warning(industry_valuation_history_sw_daily): failed to access index",sindustry)
|
480
508
|
return None
|
481
509
|
|
482
510
|
import pandas as pd
|
@@ -632,6 +660,7 @@ def industry_valuation_history_sw_weekly(industry,start,end,vtype='PE', \
|
|
632
660
|
|
633
661
|
industry1=industry.split('.')[0]
|
634
662
|
industry_name_flag=industry_code_flag=False
|
663
|
+
type_name=''
|
635
664
|
try:
|
636
665
|
type_name=sw_codes[sw_codes['name']==industry1]['type_name'].values[0]
|
637
666
|
industry_name_flag=True
|
@@ -640,19 +669,20 @@ def industry_valuation_history_sw_weekly(industry,start,end,vtype='PE', \
|
|
640
669
|
type_name=sw_codes[sw_codes['code']==industry1]['type_name'].values[0]
|
641
670
|
industry_code_flag=True
|
642
671
|
except:
|
643
|
-
print(" #
|
644
|
-
return None
|
672
|
+
print(" #Warning(industry_valuation_history_sw_weekly): not a Shenwan index for",industry)
|
673
|
+
#return None
|
645
674
|
|
646
675
|
if type_name=='三级行业':
|
647
|
-
print(" #
|
676
|
+
print(" #Warning(industry_valuation_history_sw_weekly): currently does not support Shenwan 3rd_level industry",industry)
|
648
677
|
return None
|
649
678
|
|
650
|
-
if not (type_name
|
679
|
+
if not (type_name in ['二级行业','风格指数']):
|
651
680
|
df=industry_valuation_history_sw_daily(industry=industry,start=start,end=end,vtype=vtype, \
|
652
|
-
|
653
|
-
|
681
|
+
graph=graph,loc=loc,error_message=False)
|
682
|
+
if not (df is None):
|
683
|
+
return df
|
654
684
|
|
655
|
-
#
|
685
|
+
# 获取行业估值历史周数据:啰嗦方法,需要反复下载,容易出ipywidgets引起的错误,需要安装之或卸载后重新安装
|
656
686
|
import pandas as pd
|
657
687
|
import akshare as ak
|
658
688
|
df=None
|
@@ -717,6 +747,9 @@ def industry_valuation_history_sw_weekly(industry,start,end,vtype='PE', \
|
|
717
747
|
if __name__=='__main__':
|
718
748
|
industry='食品饮料'
|
719
749
|
industry='白酒Ⅱ'
|
750
|
+
industry='绩优股指数'
|
751
|
+
industry='801853.SW'
|
752
|
+
|
720
753
|
start='2023-10-1'
|
721
754
|
end='2023-12-15'
|
722
755
|
vtype='PE'
|
@@ -765,11 +798,12 @@ def industry_valuation_history_sw(industry,start,end,vtype='PE', \
|
|
765
798
|
industry_name_flag=industry_code_flag=False
|
766
799
|
try:
|
767
800
|
type_name=sw_codes[sw_codes['name']==industry1]['type_name'].values[0]
|
768
|
-
industry_name_flag=True
|
801
|
+
industry_name_flag=True; industry_name=industry1
|
769
802
|
except:
|
770
803
|
try:
|
771
804
|
type_name=sw_codes[sw_codes['code']==industry1]['type_name'].values[0]
|
772
805
|
industry_code_flag=True
|
806
|
+
industry_name=sw_codes[sw_codes['code']==industry1]['name'].values[0]
|
773
807
|
except:
|
774
808
|
print(" #Error(industry_valuation_history_sw): Shenwan industry not found for",industry)
|
775
809
|
return None
|
@@ -778,12 +812,14 @@ def industry_valuation_history_sw(industry,start,end,vtype='PE', \
|
|
778
812
|
print(" #Error(industry_valuation_history_sw): currently does not support Shenwan 3rd_level industry",industry)
|
779
813
|
return None
|
780
814
|
|
781
|
-
if not (type_name=='二级行业'):
|
815
|
+
#if not (type_name=='二级行业'):
|
816
|
+
if not (type_name in ['二级行业','风格指数']):
|
782
817
|
df=industry_valuation_history_sw_daily(industry=industry,start=start,end=end,vtype=vtype, \
|
783
818
|
graph=graph,loc=loc)
|
784
|
-
|
819
|
+
if not (df is None):
|
820
|
+
return df
|
785
821
|
|
786
|
-
#
|
822
|
+
# 获取行业估值历史周数据:笨方法,反复下载。易出ipywidgets引起的错误,可卸载后重装
|
787
823
|
import pandas as pd
|
788
824
|
import akshare as ak
|
789
825
|
start2=start1.strftime('%Y-%m-%d')
|
@@ -852,7 +888,7 @@ def industry_valuation_history_sw(industry,start,end,vtype='PE', \
|
|
852
888
|
df2['平均值']=df2[vtypes].mean()
|
853
889
|
df2['中位数']=df2[vtypes].median()
|
854
890
|
|
855
|
-
titletxt="行业估值趋势:"+
|
891
|
+
titletxt="行业估值趋势:"+industry_name+','+vtypes
|
856
892
|
|
857
893
|
footnote0="注:申万行业分类指数,"
|
858
894
|
footnote1=''
|
@@ -18,7 +18,7 @@ siat/capm_beta.py,sha256=cxXdRVBQBllhbfz1LeTJAIWvyRYhW54nhtNUXv4HwS0,29063
|
|
18
18
|
siat/capm_beta2.py,sha256=lUuCPVSxebkA2yye1PXu1V2Jd2UKEwD_kIA25DCIDTs,29750
|
19
19
|
siat/capm_beta_test.py,sha256=ImR0c5mc4hIl714XmHztdl7qg8v1E2lycKyiqnFj6qs,1745
|
20
20
|
siat/cmat_commons.py,sha256=Nj9Kf0alywaztVoMVeVVL_EZk5jRERJy8R8kBw88_Tg,38116
|
21
|
-
siat/common.py,sha256=
|
21
|
+
siat/common.py,sha256=rWOQWvkkmLiOwj5XAagLLP-ii7VJNKYPSK5rimCUTfo,158534
|
22
22
|
siat/compare_cross.py,sha256=3iP9TH2h3w27F2ARZc7FjKcErYCzWRc-TPiymOyoVtw,24171
|
23
23
|
siat/compare_cross_test.py,sha256=xra5XYmQGEtfIZL2h-GssdH2hLdFIhG3eoCrkDrL3gY,3473
|
24
24
|
siat/concepts_iwencai.py,sha256=m1YEDtECRT6FqtzlKm91pt2I9d3Z_XoP59BtWdRdu8I,3061
|
@@ -53,14 +53,14 @@ siat/financials_test.py,sha256=HJ3CPo_Xckz2wXi3AEP6ZNWCF1Duc1pLi0Y10USiImc,23829
|
|
53
53
|
siat/fred_test.py,sha256=KF50ssSbsfpa_kT6iuomD0vG4eXztAcOasZxg1OGX5w,1201
|
54
54
|
siat/fund.py,sha256=wMDORsCBV8ZXfgwbtq-0bu3qqWY66dHnbqgllW0gWCo,24637
|
55
55
|
siat/fund_china.pickle,sha256=x_nPPdwy7wzIhtZQOplgDyTSyyUdXy9lbNxWysq7N6k,2437771
|
56
|
-
siat/fund_china.py,sha256=
|
56
|
+
siat/fund_china.py,sha256=ocqQnDHdnQWnRmSQ0KTBC5FoBwKtualKZprtdMlPe_A,111907
|
57
57
|
siat/fund_china_test.py,sha256=-Bh6m0J0GPpIbYXx-H2vpzJoNFI6pE2C2jVPa8DazgE,6649
|
58
58
|
siat/fund_test.py,sha256=V4ADb8Gsp8gyeFTwcgRsJBpnUih_O-Q2V1ILc5oKjK8,1116
|
59
59
|
siat/future_china.py,sha256=F-HsIf2Op8Z22RzTjet1g8COzldgnMjFNSXsAkeGyWo,17595
|
60
60
|
siat/future_china_test.py,sha256=BrSzmDVaOHki6rntOtosmRn-6dkfOBuLulJNqh7MOpc,1163
|
61
61
|
siat/global_index_test.py,sha256=hnFp3wqqzzL-kAP8mgxDZ54Bd5Ijf6ENi5YJlGBgcXw,2402
|
62
62
|
siat/google_authenticator.py,sha256=ZUbZR8OW0IAKDbcYtlqGqIpZdERpFor9NccFELxg9yI,1637
|
63
|
-
siat/grafix.py,sha256=
|
63
|
+
siat/grafix.py,sha256=irpjbeRTDorDOwkJYv6wArtrdM-KrU27I7CjeKuHWqM,87857
|
64
64
|
siat/grafix_test.py,sha256=kXvcpLgQNO7wd30g_bWljLj5UH7bIVI0_dUtXbfiKR0,3150
|
65
65
|
siat/holding_risk.py,sha256=G3wpaewAKF9CwEqRpr4khyuDu9SU2EGyQUHdk7cmHOA,30693
|
66
66
|
siat/holding_risk_test.py,sha256=FRlw_9wFG98BYcg_cSj95HX5WZ1TvkGaOUdXD7-V86s,474
|
@@ -88,24 +88,24 @@ siat/option_sina_api_test.py,sha256=dn-k_wrQnAaNKHoROvWJEc7lqlU0bwiV2Aa4usWAFGM,
|
|
88
88
|
siat/proxy_test.py,sha256=erQJrmGs2X46z8Gb1h-7GYQ0rTUcaR8dxHExWoBz2eM,2610
|
89
89
|
siat/quandl_test.py,sha256=EcPoXnLuqzPl5dKyVEZi3j3PJZFpsnU_iNPhLWC9p-A,1552
|
90
90
|
siat/risk_adjusted_return.py,sha256=oRUOagpQlGB56R1xIHZoYwAi42RqcZl0R-JCVBCKVe0,55086
|
91
|
-
siat/risk_adjusted_return2.py,sha256=
|
91
|
+
siat/risk_adjusted_return2.py,sha256=eg8TB1GBjUJK9NiE0no4JrsQWVe6J5C0ffJDaCh2FSA,81395
|
92
92
|
siat/risk_adjusted_return_test.py,sha256=m_VHL5AtT74cJv5i7taTeTfnkX48y0AFJk5phawyYWg,3416
|
93
93
|
siat/risk_evaluation.py,sha256=I6B3gty-t--AkDCO0tKF-291YfpnF-IkXcFjqNKCt9I,76286
|
94
94
|
siat/risk_evaluation_test.py,sha256=YEXM96gKzTfwN4U61AS4Rr1tV7KgUvn4rRC6f3iMw9s,3731
|
95
95
|
siat/risk_free_rate.py,sha256=ZMr4cHikPvXvywr54gGqiI3Nvb69am6tq3zj2hwzANE,12384
|
96
96
|
siat/risk_free_rate_test.py,sha256=CpmhUf8aEAEZeNu4gvWP2Mz2dLoIgBX5bI41vfUBEr8,4285
|
97
|
-
siat/sector_china.py,sha256=
|
97
|
+
siat/sector_china.py,sha256=MX1pzqvHvmWD9qGAe8lnUoCXSWjwnjBK8HhAbijTirI,150761
|
98
98
|
siat/sector_china_test.py,sha256=1wq7ef8Bb_L8F0h0W6FvyBrIcBTEbrTV7hljtpj49U4,5843
|
99
99
|
siat/security_price.py,sha256=2oHskgiw41KMGfqtnA0i2YjNNV6cYgtlUK0j3YeuXWs,29185
|
100
|
-
siat/security_price2.py,sha256=
|
101
|
-
siat/security_prices.py,sha256=
|
100
|
+
siat/security_price2.py,sha256=cbskpPn0C7k0E3TTeXIFg6vrVsbJ6Xa18St6W-aR3Vk,26315
|
101
|
+
siat/security_prices.py,sha256=M8Qflbd6cgIJAnXBn3Ifn2z8A0SWzw6Ns_VHn74v1O8,108034
|
102
102
|
siat/security_prices_test.py,sha256=OEphoJ87NPKoNow1QA8EU_5MUYrJF-qKoWKNapVfZNI,10779
|
103
103
|
siat/security_trend.py,sha256=o0vpWdrJkmODCP94X-Bvn-w7efHhj9HpUYBHtLl55D0,17240
|
104
104
|
siat/security_trend2-20240620.py,sha256=QVnEcb7AyVbO77jVqfFsJffGXrX8pgJ9xCfoAKmWBPk,24854
|
105
|
-
siat/security_trend2.py,sha256=
|
105
|
+
siat/security_trend2.py,sha256=JHrO5zDBYMLbpvotdaqaUcFrxm2di60kMVOdeom8t8A,26336
|
106
106
|
siat/setup.py,sha256=up65rQGLmTBkhtaMLowjoQXYmIsnycnm4g1SYmeQS6o,1335
|
107
107
|
siat/shenwan index history test.py,sha256=JCVAzOSEldHalhSFa3pqD8JI_8_djPMQOxpkuYU-Esg,1418
|
108
|
-
siat/stock.py,sha256=
|
108
|
+
siat/stock.py,sha256=8zOIiPDlzLCqHqvyLOLzmaAt6B1QOSW24r7giRc2jKc,154911
|
109
109
|
siat/stock_advice_linear.py,sha256=-twT7IGP-NEplkL1WPSACcNJjggRB2j4mlAQCkzOAuo,31655
|
110
110
|
siat/stock_base.py,sha256=uISvbRyOGy8p9QREA96CVydgflBkn5L3OXOGKl8oanc,1312
|
111
111
|
siat/stock_china.py,sha256=zyUyghIrkkkYWlHRRP7Hoblxzfp-jrck60pTJpwMahg,91553
|
@@ -117,7 +117,7 @@ siat/stock_prices_kneighbors.py,sha256=WfZvo5EyeBsm-T37zDj7Sl9dPSRq5Bx4JxIJ9IUum
|
|
117
117
|
siat/stock_prices_linear.py,sha256=-OUKRr27L2aStQgJSlJOrJ4gay_G7P-m-7t7cU2Yoqk,13991
|
118
118
|
siat/stock_profile.py,sha256=B3eIwzEmiCqiCaxIlhfdEPsQBoW1PFOe1hkiY3mVF6Y,26038
|
119
119
|
siat/stock_technical-20240620.py,sha256=A4x18mZgYSA8SSiDz4u_O3gd5oVRgbI6JIiBfFY0tVw,116013
|
120
|
-
siat/stock_technical.py,sha256=
|
120
|
+
siat/stock_technical.py,sha256=urnbFubwsYcl8dEPLM6DfdBmsia4xQ1rvM-71VZTM88,136050
|
121
121
|
siat/stock_test.py,sha256=E9YJAvOw1VEGJSDI4IZuEjl0tGoisOIlN-g9UqA_IZE,19475
|
122
122
|
siat/stooq.py,sha256=dOc_S5HLrYg48YAKTCs1eX8UTJOOkPM8qLL2KupqlLY,2470
|
123
123
|
siat/temp.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
|
@@ -131,16 +131,17 @@ siat/transaction_test.py,sha256=Z8g1LJCN4-mnUByXMUMoFmN0t105cbmsz2QmvSuIkbU,1858
|
|
131
131
|
siat/translate-20230125.py,sha256=NPPSXhT38s5t9fzMvl_fvi4ckSB73ThLmZetVI-xGdU,117953
|
132
132
|
siat/translate-20230206.py,sha256=-vtI125WyaJhmPotOpDAmclt_XnYVaWU9ByLWZ6FyYE,118133
|
133
133
|
siat/translate-20230215.py,sha256=TJgtPE3n8IjljmZ4Pefy8dmHoNdFF-1zpML6BhA9FKE,121657
|
134
|
-
siat/translate.py,sha256=
|
134
|
+
siat/translate.py,sha256=12-Qx2sqwANobFsh2k5qyE_idjHs0j2g5cTlh9by7co,240806
|
135
135
|
siat/translate_20240606.py,sha256=63IyHWEU3Uz9mjwyuAX3fqY4nUMdwh0ICQAgmgPXP7Y,215121
|
136
|
+
siat/translate_241003_keep.py,sha256=un7Fqe1v35MXsja5exZgjmLzrZtt66NARZIGlyFuGGU,218747
|
136
137
|
siat/universal_test.py,sha256=CDAOffW1Rvs-TcNN5giWVvHMlch1w4dp-w5SIV9jXL0,3936
|
137
|
-
siat/valuation.py,sha256=
|
138
|
-
siat/valuation_china.py,sha256=
|
138
|
+
siat/valuation.py,sha256=WCqL5zYkZ_Y3MLeoWXTu3G1CknwGdYzhpszbT6cEoYk,49255
|
139
|
+
siat/valuation_china.py,sha256=CVp1IwIsF3Om0J29RGkyxZLt4n9Ug-ua_RKhLwL9fUQ,69624
|
139
140
|
siat/valuation_market_china_test.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
|
140
141
|
siat/var_model_validation.py,sha256=R0caWnuZarrRg9939hxh3vJIIpIyPfvelYmzFNZtPbo,14910
|
141
142
|
siat/yf_name.py,sha256=9U_XfEeMlS3TrCrO3Bww21nuFgghbnO-cqDJMhQWqew,16193
|
142
|
-
siat-3.
|
143
|
-
siat-3.
|
144
|
-
siat-3.
|
145
|
-
siat-3.
|
146
|
-
siat-3.
|
143
|
+
siat-3.5.2.dist-info/LICENSE,sha256=NTEMMROY9_4U1szoKC3N2BLHcDd_o5uTgqdVH8tbApw,1071
|
144
|
+
siat-3.5.2.dist-info/METADATA,sha256=aR703O3uk2D33oAxA_vW9ozjcvFBQG2LrUBIbJK2EUA,8009
|
145
|
+
siat-3.5.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
146
|
+
siat-3.5.2.dist-info/top_level.txt,sha256=r1cVyL7AIKqeAmEJjNR8FMT20OmEzufDstC2gv3NvEY,5
|
147
|
+
siat-3.5.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|