siat 3.0.2__py3-none-any.whl → 3.0.3__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/assets_liquidity.py +1 -0
- siat/beta_adjustment.py +1 -0
- siat/beta_adjustment_china.py +1 -0
- siat/bond_china.py +1 -0
- siat/capm_beta.py +1 -0
- siat/capm_beta2.py +1 -0
- siat/compare_cross.py +1 -0
- siat/fama_french.py +1 -0
- siat/financial_base.py +1 -0
- siat/holding_risk.py +1 -0
- siat/market_china.py +1 -1
- siat/markowitz.py +1 -0
- siat/risk_adjusted_return.py +1 -0
- siat/risk_evaluation.py +1 -0
- siat/security_trend.py +1 -0
- siat/security_trend2.py +1 -0
- siat/stock_china.py +1 -1
- siat/stock_technical.py +1 -0
- siat/transaction.py +1 -0
- siat/translate.py +1 -0
- siat/valuation.py +1 -0
- siat/valuation_china.py +1 -0
- siat/var_model_validation.py +1 -0
- {siat-3.0.2.dist-info → siat-3.0.3.dist-info}/METADATA +1 -1
- {siat-3.0.2.dist-info → siat-3.0.3.dist-info}/RECORD +27 -27
- {siat-3.0.2.dist-info → siat-3.0.3.dist-info}/WHEEL +0 -0
- {siat-3.0.2.dist-info → siat-3.0.3.dist-info}/top_level.txt +0 -0
siat/assets_liquidity.py
CHANGED
@@ -19,6 +19,7 @@ from siat.common import *
|
|
19
19
|
from siat.translate import *
|
20
20
|
from siat.grafix import *
|
21
21
|
from siat.security_prices import *
|
22
|
+
from siat.security_price2 import *
|
22
23
|
#==============================================================================
|
23
24
|
import matplotlib.pyplot as plt
|
24
25
|
|
siat/beta_adjustment.py
CHANGED
@@ -13,6 +13,7 @@ from siat.common import *
|
|
13
13
|
from siat.translate import *
|
14
14
|
from siat.grafix import *
|
15
15
|
from siat.security_prices import *
|
16
|
+
from siat.security_price2 import *
|
16
17
|
#==============================================================================
|
17
18
|
import matplotlib.pyplot as plt
|
18
19
|
|
siat/beta_adjustment_china.py
CHANGED
@@ -13,6 +13,7 @@ from siat.common import *
|
|
13
13
|
from siat.translate import *
|
14
14
|
from siat.grafix import *
|
15
15
|
from siat.security_prices import *
|
16
|
+
from siat.security_price2 import *
|
16
17
|
from siat.beta_adjustment import *
|
17
18
|
#==============================================================================
|
18
19
|
import matplotlib.pyplot as plt
|
siat/bond_china.py
CHANGED
@@ -25,6 +25,7 @@ from siat.bond_base import *
|
|
25
25
|
from siat.bond import *
|
26
26
|
from siat.stock import *
|
27
27
|
from siat.security_prices import *
|
28
|
+
from siat.security_price2 import *
|
28
29
|
#==============================================================================
|
29
30
|
import matplotlib.pyplot as plt
|
30
31
|
plt.rcParams['figure.figsize']=(12.8,7.2)
|
siat/capm_beta.py
CHANGED
@@ -18,6 +18,7 @@ import warnings; warnings.filterwarnings('ignore')
|
|
18
18
|
from siat.common import *
|
19
19
|
from siat.translate import *
|
20
20
|
from siat.security_prices import *
|
21
|
+
from siat.security_price2 import *
|
21
22
|
#==============================================================================
|
22
23
|
import matplotlib.pyplot as plt
|
23
24
|
|
siat/capm_beta2.py
CHANGED
siat/compare_cross.py
CHANGED
@@ -20,6 +20,7 @@ import warnings; warnings.filterwarnings('ignore')
|
|
20
20
|
from siat.common import *
|
21
21
|
from siat.translate import *
|
22
22
|
from siat.security_prices import *
|
23
|
+
from siat.security_price2 import *
|
23
24
|
from siat.transaction import *
|
24
25
|
from siat.risk_adjusted_return import *
|
25
26
|
from siat.sector_china import *
|
siat/fama_french.py
CHANGED
@@ -11,6 +11,7 @@ import warnings; warnings.filterwarnings('ignore')
|
|
11
11
|
from siat.common import *
|
12
12
|
from siat.translate import *
|
13
13
|
from siat.security_prices import *
|
14
|
+
from siat.security_price2 import *
|
14
15
|
#==============================================================================
|
15
16
|
import matplotlib.pyplot as plt
|
16
17
|
|
siat/financial_base.py
CHANGED
@@ -21,6 +21,7 @@ import warnings; warnings.filterwarnings('ignore')
|
|
21
21
|
from siat.common import *
|
22
22
|
from siat.translate import *
|
23
23
|
from siat.security_prices import *
|
24
|
+
from siat.security_price2 import *
|
24
25
|
#==============================================================================
|
25
26
|
#本模块直接使用爬虫抓取雅虎财经
|
26
27
|
#==============================================================================
|
siat/holding_risk.py
CHANGED
@@ -18,6 +18,7 @@ import warnings; warnings.filterwarnings("ignore")
|
|
18
18
|
from siat.common import *
|
19
19
|
from siat.translate import *
|
20
20
|
from siat.security_prices import *
|
21
|
+
from siat.security_price2 import *
|
21
22
|
#==============================================================================
|
22
23
|
import matplotlib.pyplot as plt
|
23
24
|
|
siat/market_china.py
CHANGED
@@ -22,7 +22,7 @@ from siat.common import *
|
|
22
22
|
from siat.translate import *
|
23
23
|
from siat.grafix import *
|
24
24
|
from siat.security_prices import *
|
25
|
-
|
25
|
+
from siat.security_price2 import *
|
26
26
|
#==============================================================================
|
27
27
|
import matplotlib.pyplot as plt
|
28
28
|
|
siat/markowitz.py
CHANGED
siat/risk_adjusted_return.py
CHANGED
siat/risk_evaluation.py
CHANGED
@@ -18,6 +18,7 @@ import warnings; warnings.filterwarnings("ignore")
|
|
18
18
|
from siat.common import *
|
19
19
|
from siat.translate import *
|
20
20
|
from siat.security_prices import *
|
21
|
+
from siat.security_price2 import *
|
21
22
|
#==============================================================================
|
22
23
|
import matplotlib.pyplot as plt
|
23
24
|
|
siat/security_trend.py
CHANGED
@@ -21,6 +21,7 @@ from siat.common import *
|
|
21
21
|
from siat.translate import *
|
22
22
|
from siat.stock import *
|
23
23
|
from siat.security_prices import *
|
24
|
+
from siat.security_price2 import *
|
24
25
|
from siat.risk_adjusted_return import *
|
25
26
|
from siat.valuation import *
|
26
27
|
from siat.grafix import *
|
siat/security_trend2.py
CHANGED
@@ -21,6 +21,7 @@ from siat.common import *
|
|
21
21
|
from siat.translate import *
|
22
22
|
from siat.stock import *
|
23
23
|
from siat.security_prices import *
|
24
|
+
from siat.security_price2 import *
|
24
25
|
from siat.capm_beta2 import *
|
25
26
|
from siat.risk_adjusted_return2 import *
|
26
27
|
from siat.valuation import *
|
siat/stock_china.py
CHANGED
@@ -14,7 +14,7 @@ from siat.common import *
|
|
14
14
|
from siat.translate import *
|
15
15
|
from siat.grafix import *
|
16
16
|
from siat.security_prices import *
|
17
|
-
|
17
|
+
from siat.security_price2 import *
|
18
18
|
#==============================================================================
|
19
19
|
# 获得个股近一百个交易日的资金净流入数据
|
20
20
|
#==============================================================================
|
siat/stock_technical.py
CHANGED
@@ -20,6 +20,7 @@ from siat.common import *
|
|
20
20
|
from siat.translate import *
|
21
21
|
from siat.grafix import *
|
22
22
|
from siat.security_prices import *
|
23
|
+
from siat.security_price2 import *
|
23
24
|
from siat.stock import *
|
24
25
|
from siat.valuation import *
|
25
26
|
#==============================================================================
|
siat/transaction.py
CHANGED
siat/translate.py
CHANGED
siat/valuation.py
CHANGED
@@ -21,6 +21,7 @@ from siat.common import *
|
|
21
21
|
from siat.translate import *
|
22
22
|
from siat.stock import *
|
23
23
|
from siat.security_prices import *
|
24
|
+
from siat.security_price2 import *
|
24
25
|
from siat.sector_china import *
|
25
26
|
from siat.valuation_china import *
|
26
27
|
from siat.grafix import *
|
siat/valuation_china.py
CHANGED
@@ -16,6 +16,7 @@ from siat.common import *
|
|
16
16
|
from siat.translate import *
|
17
17
|
from siat.grafix import *
|
18
18
|
from siat.security_prices import *
|
19
|
+
from siat.security_price2 import *
|
19
20
|
from siat.sector_china import *
|
20
21
|
|
21
22
|
#==============================================================================
|
siat/var_model_validation.py
CHANGED
@@ -19,6 +19,7 @@ import warnings; warnings.filterwarnings("ignore")
|
|
19
19
|
from siat.common import *
|
20
20
|
from siat.translate import *
|
21
21
|
from siat.security_prices import *
|
22
|
+
from siat.security_price2 import *
|
22
23
|
#==============================================================================
|
23
24
|
#==============================================================================
|
24
25
|
def calc_ret(price_series,groupsize=1):
|
@@ -1,24 +1,24 @@
|
|
1
1
|
siat/__init__.py,sha256=2c0GKq4KaxA0vfdvMeyCPiNR6wODmH6CGj8n5UDOywY,2182
|
2
2
|
siat/allin.py,sha256=9fgRnER16lotAxUbiLMiOo0fZaNFLgUDUsUcHbZ3WG0,2676
|
3
3
|
siat/alpha_vantage_test.py,sha256=tKr-vmuFH3CZAqwmISz6jzjPHzV1JJl3sPfZdz8aTfM,747
|
4
|
-
siat/assets_liquidity.py,sha256=
|
4
|
+
siat/assets_liquidity.py,sha256=deAJ60YcqMUgrXY7jy7BfzLutoy4uOEtfXqqMSujCRo,28889
|
5
5
|
siat/assets_liquidity_test.py,sha256=UWk6HIUlizU7LQZ890fGx8LwU1jMMrIZswg8cFUJWZ8,1285
|
6
6
|
siat/barrons_scraping_test.py,sha256=jSRVPxyYylcgG3fAsuqE-9WH3sDfJ3CdZUcU8VBVdoU,10110
|
7
|
-
siat/beta_adjustment.py,sha256=
|
8
|
-
siat/beta_adjustment_china.py,sha256=
|
7
|
+
siat/beta_adjustment.py,sha256=pKnwcFR7-0UAyGCxz93IVAInDniNfwAFIg7wDMOCVcc,37084
|
8
|
+
siat/beta_adjustment_china.py,sha256=zWwdtAUPOXyzEDSRWb4vA299tniACiOLJwDT4LLfdy4,20696
|
9
9
|
siat/beta_adjustment_test.py,sha256=nBhvQQfqxooCHjy5hL0a8V0ZC58BjuCZVFpqpWpHeF0,2467
|
10
10
|
siat/blockchain.py,sha256=awF3GDtlwaJhku0a2kLuXOS8d3IzkjR_RyzlZWvD3L4,6032
|
11
11
|
siat/bond.py,sha256=Vqp0k1gNRjpQXMXREmelREySPAjCVWuQBVvLlKOv34o,103523
|
12
12
|
siat/bond_base.py,sha256=FTdAhBbDFlhNt535p22lXspWoLO7qdFH8eqqHZHYYos,37594
|
13
|
-
siat/bond_china.py,sha256=
|
13
|
+
siat/bond_china.py,sha256=eYv-nMoWSS5fZ4VxnuJ29QFY9GUS6meGiIc0Xjm1fQI,3038
|
14
14
|
siat/bond_test.py,sha256=yUOFw7ddGU-kb1rJdnsjkJWziDNgUR7OLDA7F7Ub91A,5246
|
15
15
|
siat/bond_zh_sina.py,sha256=26BohGcS120utwqg9dJvdGm5OkuNpNu5bco80uOuQpU,4423
|
16
|
-
siat/capm_beta.py,sha256=
|
17
|
-
siat/capm_beta2.py,sha256=
|
16
|
+
siat/capm_beta.py,sha256=F8eSpKS6jyS72nHbFvm4VMXFIaqjaBsUVW9g-xOP49Q,28965
|
17
|
+
siat/capm_beta2.py,sha256=u6CjWoarNyLORIVHlFcFa_r8RrqdWuWn66VDZbZrCzc,23610
|
18
18
|
siat/capm_beta_test.py,sha256=ImR0c5mc4hIl714XmHztdl7qg8v1E2lycKyiqnFj6qs,1745
|
19
19
|
siat/cmat_commons.py,sha256=Nj9Kf0alywaztVoMVeVVL_EZk5jRERJy8R8kBw88_Tg,38116
|
20
20
|
siat/common.py,sha256=kk3VasbCEW8Fjq_cqO80z-9fmYQE0mvvNU2s-roQbGQ,133638
|
21
|
-
siat/compare_cross.py,sha256=
|
21
|
+
siat/compare_cross.py,sha256=3iP9TH2h3w27F2ARZc7FjKcErYCzWRc-TPiymOyoVtw,24171
|
22
22
|
siat/compare_cross_test.py,sha256=xra5XYmQGEtfIZL2h-GssdH2hLdFIhG3eoCrkDrL3gY,3473
|
23
23
|
siat/concepts_iwencai.py,sha256=m1YEDtECRT6FqtzlKm91pt2I9d3Z_XoP59BtWdRdu8I,3061
|
24
24
|
siat/concepts_kpl.py,sha256=SJ9UaJp5i79EXKZ3dPa_vBEoG_zgl1Ig5rZAm-ubgM4,4941
|
@@ -32,9 +32,9 @@ siat/economy_test.py,sha256=6vjNlPz7W125pJb7simCddobSEp3jmLIMvVkLRZ7zW8,13339
|
|
32
32
|
siat/esg.py,sha256=PRgZo6rwlldAG9qNRnFWX0fnLdPHXIPVQOIFOJ2azmQ,19016
|
33
33
|
siat/esg_test.py,sha256=Z9m6GUt8O7oHZSEG9aDYpGdvvrv2AiRJdHTiU6jqmZ0,2944
|
34
34
|
siat/exchange_bond_china.pickle,sha256=mGy55toxgUrNL2rdf8lIVeSDz9wyHk6x7hierKxTklI,1255244
|
35
|
-
siat/fama_french.py,sha256=
|
35
|
+
siat/fama_french.py,sha256=1IVB_UIU0fRmT8iEqf2hq2yFUcNXZVmZ6XOJyY8mHSE,47568
|
36
36
|
siat/fama_french_test.py,sha256=M4O23lBKsJxhWHRluwCb3l7HSEn3OFTjzGMpehcevRg,4678
|
37
|
-
siat/financial_base.py,sha256=
|
37
|
+
siat/financial_base.py,sha256=5u298_1OSlgLnDmhXxqvo4WgMM0JKSa_4jBYF-Ilx38,41097
|
38
38
|
siat/financial_statements.py,sha256=Ek18eKHflxZ01evOIwnfH1KZ_M2g8Vr8SxkL1om-K7U,25391
|
39
39
|
siat/financial_statements_test.py,sha256=FLhx8JD-tVVWSBGux6AMz1jioXX4U4bp9DmgFHYXb_w,716
|
40
40
|
siat/financials.py,sha256=YDRpqcbGGs8WyVmcJwOucC8TbFQrKOdK-av6q5S_G-s,80409
|
@@ -61,11 +61,11 @@ siat/global_index_test.py,sha256=hnFp3wqqzzL-kAP8mgxDZ54Bd5Ijf6ENi5YJlGBgcXw,240
|
|
61
61
|
siat/google_authenticator.py,sha256=ZUbZR8OW0IAKDbcYtlqGqIpZdERpFor9NccFELxg9yI,1637
|
62
62
|
siat/grafix.py,sha256=upA1x4YWkPmBikv6q455DQbnVgzSh0rAwsW5JaINd6E,81252
|
63
63
|
siat/grafix_test.py,sha256=kXvcpLgQNO7wd30g_bWljLj5UH7bIVI0_dUtXbfiKR0,3150
|
64
|
-
siat/holding_risk.py,sha256=
|
64
|
+
siat/holding_risk.py,sha256=KmTWE0YlEzKf9nH9pocopcbB6N8Eu45ZEM1l3aPkJ8w,30584
|
65
65
|
siat/holding_risk_test.py,sha256=FRlw_9wFG98BYcg_cSj95HX5WZ1TvkGaOUdXD7-V86s,474
|
66
66
|
siat/local_debug_test.py,sha256=CDAOffW1Rvs-TcNN5giWVvHMlch1w4dp-w5SIV9jXL0,3936
|
67
|
-
siat/market_china.py,sha256=
|
68
|
-
siat/markowitz.py,sha256=
|
67
|
+
siat/market_china.py,sha256=nabx24qm7N51OafTrwUw542pNeFJ3JaQ1wqyv-nLN5I,37883
|
68
|
+
siat/markowitz.py,sha256=ZzNPn_iNIifBRSwXi5xKo4FNP-POVi5bvJEdJmxIXUc,96547
|
69
69
|
siat/markowitz_ccb_test.py,sha256=xBkkoaNHdq9KSUrNuHGgKTdNYUvgi84kNYcf719eoyE,1593
|
70
70
|
siat/markowitz_ef_test.py,sha256=wjNlICkgRIqnonPeSIHo4Mu2GRtb9dr21wDt2kMNEcI,4032
|
71
71
|
siat/markowitz_old.py,sha256=Lf7O_4QWT8RsdkHiUyc_7kKY3eZjKDtFR89Fz3pwYnY,33046
|
@@ -83,10 +83,10 @@ siat/option_pricing_test.py,sha256=eeorV5Ja5vjlRXnP6fWJHetGU5Vb8SnLopkC6RV3GfA,2
|
|
83
83
|
siat/option_sina_api_test.py,sha256=dn-k_wrQnAaNKHoROvWJEc7lqlU0bwiV2Aa4usWAFGM,5908
|
84
84
|
siat/proxy_test.py,sha256=erQJrmGs2X46z8Gb1h-7GYQ0rTUcaR8dxHExWoBz2eM,2610
|
85
85
|
siat/quandl_test.py,sha256=EcPoXnLuqzPl5dKyVEZi3j3PJZFpsnU_iNPhLWC9p-A,1552
|
86
|
-
siat/risk_adjusted_return.py,sha256=
|
86
|
+
siat/risk_adjusted_return.py,sha256=GuWq3ZQb46k-A7uQcGgkBVSDturYhtwZLEMBI7580tI,54776
|
87
87
|
siat/risk_adjusted_return2.py,sha256=MdNrqDaw2IbjitkZrjrqbOQJJkfI2sLvce6gmAAKmrc,56991
|
88
88
|
siat/risk_adjusted_return_test.py,sha256=m_VHL5AtT74cJv5i7taTeTfnkX48y0AFJk5phawyYWg,3416
|
89
|
-
siat/risk_evaluation.py,sha256=
|
89
|
+
siat/risk_evaluation.py,sha256=jgKLRyjus5_Szq5MCv_adMw3yq6mW4MiAfDE6UY2E0A,76005
|
90
90
|
siat/risk_evaluation_test.py,sha256=YEXM96gKzTfwN4U61AS4Rr1tV7KgUvn4rRC6f3iMw9s,3731
|
91
91
|
siat/risk_free_rate.py,sha256=ZMr4cHikPvXvywr54gGqiI3Nvb69am6tq3zj2hwzANE,12384
|
92
92
|
siat/risk_free_rate_test.py,sha256=CpmhUf8aEAEZeNu4gvWP2Mz2dLoIgBX5bI41vfUBEr8,4285
|
@@ -96,14 +96,14 @@ siat/security_price.py,sha256=2oHskgiw41KMGfqtnA0i2YjNNV6cYgtlUK0j3YeuXWs,29185
|
|
96
96
|
siat/security_price2.py,sha256=kuYh0V5cqclkM6MjZUd-N361fv3oxGVVerYINuTzZrE,24622
|
97
97
|
siat/security_prices.py,sha256=gSmnXt3EtTxUvETwUVzIC95j8U4Tivr1AU5RwzmKQzo,101601
|
98
98
|
siat/security_prices_test.py,sha256=OEphoJ87NPKoNow1QA8EU_5MUYrJF-qKoWKNapVfZNI,10779
|
99
|
-
siat/security_trend.py,sha256=
|
100
|
-
siat/security_trend2.py,sha256=
|
99
|
+
siat/security_trend.py,sha256=o0vpWdrJkmODCP94X-Bvn-w7efHhj9HpUYBHtLl55D0,17240
|
100
|
+
siat/security_trend2.py,sha256=kgrsTnSpFXjsnDecpRobQzlAwtZlP8_DB0v8KhwaUR4,23655
|
101
101
|
siat/setup.py,sha256=up65rQGLmTBkhtaMLowjoQXYmIsnycnm4g1SYmeQS6o,1335
|
102
102
|
siat/shenwan index history test.py,sha256=JCVAzOSEldHalhSFa3pqD8JI_8_djPMQOxpkuYU-Esg,1418
|
103
103
|
siat/stock.py,sha256=aMpmvcMyAfl2hbH3AjCLO5mGAUsEFlbYUbXYWDGrC3w,134797
|
104
104
|
siat/stock_advice_linear.py,sha256=-twT7IGP-NEplkL1WPSACcNJjggRB2j4mlAQCkzOAuo,31655
|
105
105
|
siat/stock_base.py,sha256=uISvbRyOGy8p9QREA96CVydgflBkn5L3OXOGKl8oanc,1312
|
106
|
-
siat/stock_china.py,sha256=
|
106
|
+
siat/stock_china.py,sha256=zkk6Yu7y4gH8HBPdmZGe5BHnMjjKFpb4ZIDQ2v5kqyg,83965
|
107
107
|
siat/stock_china_test.py,sha256=eO4HWsSvc6qezl0LndjtL24lViEyrBjH_sx2c2Y2Q2M,1294
|
108
108
|
siat/stock_info.pickle,sha256=EUUfZwFS3SMO2f25tOLWcjiJheGRCL3PDt7jII-i_4M,1315662
|
109
109
|
siat/stock_info_test.py,sha256=gfG3DbhDACbtD8wnv_R6zhj0t11XaC8NX8uLD9Qv3Fo,6122
|
@@ -111,7 +111,7 @@ siat/stock_list_china_test.py,sha256=gv14UwMMvkZqtb6G7DCTSuehIwVHuVwu7w60p6gyHoo
|
|
111
111
|
siat/stock_prices_kneighbors.py,sha256=WfZvo5EyeBsm-T37zDj7Sl9dPSRq5Bx4JxIJ9IUum6s,36738
|
112
112
|
siat/stock_prices_linear.py,sha256=-OUKRr27L2aStQgJSlJOrJ4gay_G7P-m-7t7cU2Yoqk,13991
|
113
113
|
siat/stock_profile.py,sha256=npinIwxgfgHeV8tpXrzLBrPUWKMZGL2-xA96ve-H2wM,25329
|
114
|
-
siat/stock_technical.py,sha256=
|
114
|
+
siat/stock_technical.py,sha256=9bIwNSXcpUgNnbXke9YRVMnkOrwT5os4qDrdlqOJqUM,111729
|
115
115
|
siat/stock_test.py,sha256=E9YJAvOw1VEGJSDI4IZuEjl0tGoisOIlN-g9UqA_IZE,19475
|
116
116
|
siat/stooq.py,sha256=dOc_S5HLrYg48YAKTCs1eX8UTJOOkPM8qLL2KupqlLY,2470
|
117
117
|
siat/temp.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
|
@@ -120,18 +120,18 @@ siat/test_graphviz.py,sha256=CETKpDL8PnysS-PD3fHkeAgagUxjaUl0CsXPiadQySg,16999
|
|
120
120
|
siat/test_markowitz_simple.py,sha256=jAgwpkdMGxvjlfEg0I8qbyLQHDd5rErWqHgiqVvOJlY,6122
|
121
121
|
siat/test_markowitz_simple_revised.py,sha256=Tq44VTIjc75RR4_AMEWmU3-EW7TH4ZNEC6Zcer3fbmk,7407
|
122
122
|
siat/test_markowitz_simple_revised2.py,sha256=r0KzW9zvaP9BTdXyB2M3MhRKtzHDIituAflT9ZTR9bs,7361
|
123
|
-
siat/transaction.py,sha256=
|
123
|
+
siat/transaction.py,sha256=nZTYYkx1BVBLDovSlZCtcviRuFxrYe9YFXOMZgo6QXo,14563
|
124
124
|
siat/transaction_test.py,sha256=Z8g1LJCN4-mnUByXMUMoFmN0t105cbmsz2QmvSuIkbU,18580
|
125
125
|
siat/translate-20230125.py,sha256=NPPSXhT38s5t9fzMvl_fvi4ckSB73ThLmZetVI-xGdU,117953
|
126
126
|
siat/translate-20230206.py,sha256=-vtI125WyaJhmPotOpDAmclt_XnYVaWU9ByLWZ6FyYE,118133
|
127
127
|
siat/translate-20230215.py,sha256=TJgtPE3n8IjljmZ4Pefy8dmHoNdFF-1zpML6BhA9FKE,121657
|
128
|
-
siat/translate.py,sha256=
|
128
|
+
siat/translate.py,sha256=PUCzxVtjVxCTkANlCxo50qRMhqnqSplIjv09HNzbQiw,203356
|
129
129
|
siat/universal_test.py,sha256=CDAOffW1Rvs-TcNN5giWVvHMlch1w4dp-w5SIV9jXL0,3936
|
130
|
-
siat/valuation.py,sha256=
|
131
|
-
siat/valuation_china.py,sha256=
|
130
|
+
siat/valuation.py,sha256=uKjPVD-oOUjUaF5QaQ1WK32kjLTOAPA2SZY2mpZ_aH0,47370
|
131
|
+
siat/valuation_china.py,sha256=Tde2LzPDQy3Z7xOQQDw4ckQMPdROp_z0-GjFE6Z5_lI,67639
|
132
132
|
siat/valuation_market_china_test.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
|
133
|
-
siat/var_model_validation.py,sha256=
|
134
|
-
siat-3.0.
|
135
|
-
siat-3.0.
|
136
|
-
siat-3.0.
|
137
|
-
siat-3.0.
|
133
|
+
siat/var_model_validation.py,sha256=f-oDewg7bPzyNanz_Y_jLH68NowAA3gXFehW_weKGG0,14898
|
134
|
+
siat-3.0.3.dist-info/METADATA,sha256=mgnx0bWAeP5pyVaUI_L613gEpyPTEZfyui3ASUy40lY,1447
|
135
|
+
siat-3.0.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
136
|
+
siat-3.0.3.dist-info/top_level.txt,sha256=r1cVyL7AIKqeAmEJjNR8FMT20OmEzufDstC2gv3NvEY,5
|
137
|
+
siat-3.0.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|