siat 3.4.3__py3-none-any.whl → 3.4.4__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/financials_china2.py
CHANGED
@@ -2143,15 +2143,18 @@ def fs_analysis_china(tickers,fsdates=[],analysis_type='balance sheet', \
|
|
2143
2143
|
elif ('dupont' in analysis_type1) and ('decompose' in analysis_type1):
|
2144
2144
|
# 股票需为单只股票列表
|
2145
2145
|
if not isinstance(tickers,str):
|
2146
|
-
|
2147
|
-
|
2146
|
+
if isinstance(tickers,list):
|
2147
|
+
tickers=tickers[0]
|
2148
|
+
else:
|
2149
|
+
print(" #Warning(fs_analysis_china): must be one ticker for",tickers)
|
2150
|
+
return
|
2148
2151
|
# 日期需为一个日期
|
2149
2152
|
if not isinstance(fsdates,str):
|
2150
|
-
fsdates
|
2151
|
-
|
2152
|
-
|
2153
|
-
|
2154
|
-
|
2153
|
+
if isinstance(fsdates,list):
|
2154
|
+
fsdates=fsdates[0]
|
2155
|
+
else:
|
2156
|
+
print(" #Warning(fs_analysis_china): must one date for",fsdates)
|
2157
|
+
return
|
2155
2158
|
|
2156
2159
|
# 单只股票的多层杜邦分解
|
2157
2160
|
from siat.financials_china import dupont_decompose_china
|
@@ -42,7 +42,7 @@ siat/financials.py,sha256=mbEZSNeHMMFcnPUryQWvdmNlWQvpnOG9eItgS7IVw3k,80458
|
|
42
42
|
siat/financials2 - 副本.py,sha256=dKlNjIfKeoSy055fQ6E6TUj9HEoO5Ney9grD84J5kfk,14389
|
43
43
|
siat/financials2.py,sha256=7mnsTncKsgwFu8PP4refh5C5iMIO9P0KOMSF87ZyncY,45736
|
44
44
|
siat/financials_china.py,sha256=BkfY8A3YH2_NRyqIwGZ3MA1dq75VGhMaTqE0SAlbYrk,191413
|
45
|
-
siat/financials_china2.py,sha256=
|
45
|
+
siat/financials_china2.py,sha256=tUvWZhUORrZ0EuCVVkJifbO-8d_hXUyA73OPmOX1CL0,92862
|
46
46
|
siat/financials_china2_test.py,sha256=Erz5k4LyOplBBvYls2MypuqHpVNJ3daiLdyeJezNPu0,2722
|
47
47
|
siat/financials_china2_test2.py,sha256=C8CuYTMHN4Mhp-sTu-Bmg0zMXRCaYV6ezGDoYartRYQ,3507
|
48
48
|
siat/financials_china2_test3.py,sha256=UXYSA80DNSPRhHpovc2MA9JkpILWMAQaRatbWCHBNPs,3118
|
@@ -139,7 +139,7 @@ siat/valuation_china.py,sha256=EkZQaVkoBjM0c4MCNbaX-bMnlG0e3FXeaWczZDnkptU,67784
|
|
139
139
|
siat/valuation_market_china_test.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
|
140
140
|
siat/var_model_validation.py,sha256=R0caWnuZarrRg9939hxh3vJIIpIyPfvelYmzFNZtPbo,14910
|
141
141
|
siat/yf_name.py,sha256=H1EM8YYXA8nQHIqsJlso0I3HKPiJLT3QujO4gRVQXWs,13945
|
142
|
-
siat-3.4.
|
143
|
-
siat-3.4.
|
144
|
-
siat-3.4.
|
145
|
-
siat-3.4.
|
142
|
+
siat-3.4.4.dist-info/METADATA,sha256=ylhx2EuylQVSae5MeAMZhLOSUwZ0Og377KP_JmKV3dI,7309
|
143
|
+
siat-3.4.4.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
144
|
+
siat-3.4.4.dist-info/top_level.txt,sha256=r1cVyL7AIKqeAmEJjNR8FMT20OmEzufDstC2gv3NvEY,5
|
145
|
+
siat-3.4.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|