akshare 1.16.62__py3-none-any.whl → 1.16.64__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.
- akshare/__init__.py +4 -2
- akshare/reits/reits_basic.py +96 -4
- akshare/stock_feature/stock_board_concept_ths.py +44 -2
- akshare/stock_fundamental/stock_finance_us_em.py +44 -10
- {akshare-1.16.62.dist-info → akshare-1.16.64.dist-info}/METADATA +1 -1
- {akshare-1.16.62.dist-info → akshare-1.16.64.dist-info}/RECORD +9 -9
- {akshare-1.16.62.dist-info → akshare-1.16.64.dist-info}/WHEEL +0 -0
- {akshare-1.16.62.dist-info → akshare-1.16.64.dist-info}/licenses/LICENSE +0 -0
- {akshare-1.16.62.dist-info → akshare-1.16.64.dist-info}/top_level.txt +0 -0
akshare/__init__.py
CHANGED
@@ -3071,9 +3071,11 @@ amac_manager_cancelled_info # 中国证券投资基金业协会-信息公示-诚
|
|
3071
3071
|
1.16.60 fix: fix stock_individual_fund_flow_rank interface
|
3072
3072
|
1.16.61 fix: fix stock_board_concept_index_ths interface
|
3073
3073
|
1.16.62 fix: fix stock_gdfx_free_holding_change_em interface
|
3074
|
+
1.16.63 fix: fix stock_board_concept_name_ths interface
|
3075
|
+
1.16.64 add: add reits_hist_em interface
|
3074
3076
|
"""
|
3075
3077
|
|
3076
|
-
__version__ = "1.16.
|
3078
|
+
__version__ = "1.16.64"
|
3077
3079
|
__author__ = "AKFamily"
|
3078
3080
|
|
3079
3081
|
import sys
|
@@ -4032,7 +4034,7 @@ from akshare.stock.stock_us_pink import stock_us_pink_spot_em
|
|
4032
4034
|
"""
|
4033
4035
|
REITs
|
4034
4036
|
"""
|
4035
|
-
from akshare.reits.reits_basic import reits_realtime_em
|
4037
|
+
from akshare.reits.reits_basic import reits_realtime_em, reits_hist_em
|
4036
4038
|
|
4037
4039
|
"""
|
4038
4040
|
全部 A 股-等权重市盈率、中位数市盈率
|
akshare/reits/reits_basic.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# -*- coding:utf-8 -*-
|
3
3
|
"""
|
4
|
-
Date: 2025/
|
4
|
+
Date: 2025/3/27 15:00
|
5
5
|
Desc: REITs 行情及信息
|
6
6
|
https://quote.eastmoney.com/center/gridlist.html#fund_reits_all
|
7
7
|
https://www.jisilu.cn/data/cnreits/#CnReits
|
@@ -9,6 +9,37 @@ https://www.jisilu.cn/data/cnreits/#CnReits
|
|
9
9
|
|
10
10
|
import pandas as pd
|
11
11
|
import requests
|
12
|
+
from functools import lru_cache
|
13
|
+
from typing import Dict
|
14
|
+
|
15
|
+
|
16
|
+
@lru_cache()
|
17
|
+
def __reits_code_market_map() -> Dict:
|
18
|
+
"""
|
19
|
+
东方财富网-行情中心-REITs-沪深 REITs
|
20
|
+
https://quote.eastmoney.com/center/gridlist.html#fund_reits_all
|
21
|
+
:return: 沪深 REITs-实时行情
|
22
|
+
:rtype: pandas.DataFrame
|
23
|
+
"""
|
24
|
+
url = "https://95.push2.eastmoney.com/api/qt/clist/get"
|
25
|
+
params = {
|
26
|
+
"pn": "1",
|
27
|
+
"pz": "100",
|
28
|
+
"po": "1",
|
29
|
+
"np": "1",
|
30
|
+
"ut": "bd1d9ddb04089700cf9c27f6f7426281",
|
31
|
+
"fltt": "2",
|
32
|
+
"invt": "2",
|
33
|
+
"fid": "f3",
|
34
|
+
"fs": "m:1 t:9 e:97,m:0 t:10 e:97",
|
35
|
+
"fields": "f12,f13",
|
36
|
+
"_": "1630048369992",
|
37
|
+
}
|
38
|
+
r = requests.get(url, params=params)
|
39
|
+
data_json = r.json()
|
40
|
+
temp_df = pd.DataFrame(data_json["data"]["diff"])
|
41
|
+
temp_dict = dict(zip(temp_df["f12"], temp_df["f13"]))
|
42
|
+
return temp_dict
|
12
43
|
|
13
44
|
|
14
45
|
def reits_realtime_em() -> pd.DataFrame:
|
@@ -21,9 +52,9 @@ def reits_realtime_em() -> pd.DataFrame:
|
|
21
52
|
url = "https://95.push2.eastmoney.com/api/qt/clist/get"
|
22
53
|
params = {
|
23
54
|
"pn": "1",
|
24
|
-
"pz": "
|
55
|
+
"pz": "100",
|
25
56
|
"po": "1",
|
26
|
-
"np": "
|
57
|
+
"np": "1",
|
27
58
|
"ut": "bd1d9ddb04089700cf9c27f6f7426281",
|
28
59
|
"fltt": "2",
|
29
60
|
"invt": "2",
|
@@ -34,7 +65,7 @@ def reits_realtime_em() -> pd.DataFrame:
|
|
34
65
|
}
|
35
66
|
r = requests.get(url, params=params)
|
36
67
|
data_json = r.json()
|
37
|
-
temp_df = pd.DataFrame(data_json["data"]["diff"])
|
68
|
+
temp_df = pd.DataFrame(data_json["data"]["diff"])
|
38
69
|
temp_df.reset_index(inplace=True)
|
39
70
|
temp_df["index"] = range(1, len(temp_df) + 1)
|
40
71
|
temp_df.rename(
|
@@ -51,6 +82,7 @@ def reits_realtime_em() -> pd.DataFrame:
|
|
51
82
|
"f16": "最低价",
|
52
83
|
"f17": "开盘价",
|
53
84
|
"f18": "昨收",
|
85
|
+
"f13": "市场标识",
|
54
86
|
},
|
55
87
|
inplace=True,
|
56
88
|
)
|
@@ -82,6 +114,66 @@ def reits_realtime_em() -> pd.DataFrame:
|
|
82
114
|
return temp_df
|
83
115
|
|
84
116
|
|
117
|
+
def reits_hist_em(symbol: str = "508097") -> pd.DataFrame:
|
118
|
+
"""
|
119
|
+
东方财富网-行情中心-REITs-沪深 REITs-历史行情
|
120
|
+
https://quote.eastmoney.com/sh508097.html
|
121
|
+
:param symbol: REITs 代码
|
122
|
+
:type symbol: str
|
123
|
+
:return: 沪深 REITs-历史行情
|
124
|
+
:rtype: pandas.DataFrame
|
125
|
+
"""
|
126
|
+
url = "https://push2his.eastmoney.com/api/qt/stock/kline/get"
|
127
|
+
code_market_dict = __reits_code_market_map()
|
128
|
+
params = {
|
129
|
+
"secid": f"{code_market_dict[symbol]}.{symbol}",
|
130
|
+
"klt": "101",
|
131
|
+
"fqt": "1",
|
132
|
+
"lmt": "10000",
|
133
|
+
"end": "20500000",
|
134
|
+
"iscca": "1",
|
135
|
+
"fields1": "f1,f2,f3,f4,f5,f6,f7,f8",
|
136
|
+
"fields2": "f51,f52,f53,f54,f55,f56,f57,f58,f59,f60,f61,f62,f63,f64",
|
137
|
+
"ut": "f057cbcbce2a86e2866ab8877db1d059",
|
138
|
+
"forcect": "1",
|
139
|
+
}
|
140
|
+
r = requests.get(url, params=params)
|
141
|
+
data_json = r.json()
|
142
|
+
temp_df = pd.DataFrame([item.split(",") for item in data_json["data"]["klines"]])
|
143
|
+
temp_df.columns = [
|
144
|
+
"日期",
|
145
|
+
"今开",
|
146
|
+
"最新价",
|
147
|
+
"最高",
|
148
|
+
"最低",
|
149
|
+
"成交量",
|
150
|
+
"成交额",
|
151
|
+
"振幅",
|
152
|
+
"-",
|
153
|
+
"-",
|
154
|
+
"换手",
|
155
|
+
"-",
|
156
|
+
"-",
|
157
|
+
"-",
|
158
|
+
]
|
159
|
+
temp_df = temp_df[
|
160
|
+
["日期", "今开", "最高", "最低", "最新价", "成交量", "成交额", "振幅", "换手"]
|
161
|
+
]
|
162
|
+
temp_df["今开"] = pd.to_numeric(temp_df["今开"], errors="coerce")
|
163
|
+
temp_df["最高"] = pd.to_numeric(temp_df["最高"], errors="coerce")
|
164
|
+
temp_df["最低"] = pd.to_numeric(temp_df["最低"], errors="coerce")
|
165
|
+
temp_df["最新价"] = pd.to_numeric(temp_df["最新价"], errors="coerce")
|
166
|
+
temp_df["成交量"] = pd.to_numeric(temp_df["成交量"], errors="coerce")
|
167
|
+
temp_df["成交额"] = pd.to_numeric(temp_df["成交额"], errors="coerce")
|
168
|
+
temp_df["振幅"] = pd.to_numeric(temp_df["振幅"], errors="coerce")
|
169
|
+
temp_df["换手"] = pd.to_numeric(temp_df["换手"], errors="coerce")
|
170
|
+
temp_df["日期"] = pd.to_datetime(temp_df["日期"], errors="coerce").dt.date
|
171
|
+
return temp_df
|
172
|
+
|
173
|
+
|
85
174
|
if __name__ == "__main__":
|
86
175
|
reits_realtime_em_df = reits_realtime_em()
|
87
176
|
print(reits_realtime_em_df)
|
177
|
+
|
178
|
+
reits_hist_em_df = reits_hist_em(symbol="508097")
|
179
|
+
print(reits_hist_em_df)
|
@@ -1,11 +1,12 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# -*- coding:utf-8 -*-
|
3
3
|
"""
|
4
|
-
Date: 2025/
|
4
|
+
Date: 2025/3/27 14:20
|
5
5
|
Desc: 同花顺-板块-概念板块
|
6
6
|
https://q.10jqka.com.cn/thshy/
|
7
7
|
"""
|
8
8
|
|
9
|
+
from typing import Dict
|
9
10
|
from datetime import datetime
|
10
11
|
from functools import lru_cache
|
11
12
|
from io import StringIO
|
@@ -62,6 +63,8 @@ def _get_stock_board_concept_name_ths() -> dict:
|
|
62
63
|
for item in soup.find(name="div", attrs={"class": "cate_inner"}).find_all("a")
|
63
64
|
]
|
64
65
|
name_code_map = dict(zip(name_list, code_list))
|
66
|
+
temp_dict = __stock_board_concept_summary_ths()
|
67
|
+
name_code_map.update(temp_dict)
|
65
68
|
return name_code_map
|
66
69
|
|
67
70
|
|
@@ -228,6 +231,45 @@ def stock_board_concept_index_ths(
|
|
228
231
|
return big_df
|
229
232
|
|
230
233
|
|
234
|
+
@lru_cache()
|
235
|
+
def __stock_board_concept_summary_ths() -> Dict:
|
236
|
+
"""
|
237
|
+
同花顺-数据中心-概念板块-概念时间表-辅助函数
|
238
|
+
https://q.10jqka.com.cn/gn/
|
239
|
+
:return: 概念时间表
|
240
|
+
:rtype: dict
|
241
|
+
"""
|
242
|
+
js_code = py_mini_racer.MiniRacer()
|
243
|
+
js_content = _get_file_content_ths("ths.js")
|
244
|
+
js_code.eval(js_content)
|
245
|
+
v_code = js_code.call("v")
|
246
|
+
headers = {
|
247
|
+
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) "
|
248
|
+
"Chrome/89.0.4389.90 Safari/537.36",
|
249
|
+
"Cookie": f"v={v_code}",
|
250
|
+
}
|
251
|
+
url = "http://q.10jqka.com.cn/gn/index/field/addtime/order/desc/page/1/ajax/1/"
|
252
|
+
r = requests.get(url, headers=headers)
|
253
|
+
soup = BeautifulSoup(r.text, features="lxml")
|
254
|
+
page_num = soup.find(name="span", attrs={"class": "page_info"}).text.split("/")[1]
|
255
|
+
big_dict = dict()
|
256
|
+
tqdm = get_tqdm()
|
257
|
+
for page in tqdm(range(1, int(page_num) + 1), leave=False):
|
258
|
+
url = f"http://q.10jqka.com.cn/gn/index/field/addtime/order/desc/page/{page}/ajax/1/"
|
259
|
+
r = requests.get(url, headers=headers)
|
260
|
+
try:
|
261
|
+
soup = BeautifulSoup(r.text, features="lxml")
|
262
|
+
temp_dict = {
|
263
|
+
item.get_text(): item["href"].rsplit("/")[-2]
|
264
|
+
for item in soup.find_all(name="a")
|
265
|
+
if "detail" in item["href"]
|
266
|
+
}
|
267
|
+
big_dict.update(temp_dict)
|
268
|
+
except ValueError:
|
269
|
+
break
|
270
|
+
return big_dict
|
271
|
+
|
272
|
+
|
231
273
|
def stock_board_concept_summary_ths() -> pd.DataFrame:
|
232
274
|
"""
|
233
275
|
同花顺-数据中心-概念板块-概念时间表
|
@@ -273,7 +315,7 @@ if __name__ == "__main__":
|
|
273
315
|
print(stock_board_concept_info_ths_df)
|
274
316
|
|
275
317
|
stock_board_concept_index_ths_df = stock_board_concept_index_ths(
|
276
|
-
symbol="
|
318
|
+
symbol="DeepSeek概念", start_date="20200101", end_date="20250321"
|
277
319
|
)
|
278
320
|
print(stock_board_concept_index_ths_df)
|
279
321
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# -*- coding:utf-8 -*-
|
3
3
|
"""
|
4
|
-
Date: 2025/3/
|
4
|
+
Date: 2025/3/27 14:00
|
5
5
|
Desc: 美股-基本面数据
|
6
6
|
https://emweb.eastmoney.com/PC_USF10/pages/index.html?code=TSLA&type=web&color=w#/cwfx
|
7
7
|
"""
|
@@ -12,12 +12,43 @@ import requests
|
|
12
12
|
from akshare.utils.cons import headers
|
13
13
|
|
14
14
|
|
15
|
+
def __stock_financial_us_report_query_market_em(symbol: str = "TSLA") -> str:
|
16
|
+
"""
|
17
|
+
东方财富-美股-财务分析-三大报表-查询市场
|
18
|
+
https://emweb.eastmoney.com/PC_USF10/pages/index.html?code=TSLA&type=web&color=w#/cwfx
|
19
|
+
:param symbol: choice of {"资产负债表", "综合损益表", "现金流量表"}
|
20
|
+
:type symbol: str
|
21
|
+
:return: 查询市场
|
22
|
+
:rtype: str
|
23
|
+
"""
|
24
|
+
url = "https://datacenter.eastmoney.com/securities/api/data/v1/get"
|
25
|
+
params = {
|
26
|
+
"reportName": "RPT_USF10_INFO_ORGPROFILE",
|
27
|
+
"columns": "SECUCODE,SECURITY_CODE,ORG_CODE,SECURITY_INNER_CODE,ORG_NAME,ORG_EN_ABBR,BELONG_INDUSTRY,"
|
28
|
+
"FOUND_DATE,CHAIRMAN,REG_PLACE,ADDRESS,EMP_NUM,ORG_TEL,ORG_FAX,ORG_EMAIL,ORG_WEB,ORG_PROFILE",
|
29
|
+
"quoteColumns": "",
|
30
|
+
"filter": f'(SECURITY_CODE="{symbol}")',
|
31
|
+
"pageNumber": "1",
|
32
|
+
"pageSize": "200",
|
33
|
+
"sortTypes": "",
|
34
|
+
"sortColumns": "",
|
35
|
+
"source": "SECURITIES",
|
36
|
+
"client": "PC",
|
37
|
+
"v": "04406064331266868",
|
38
|
+
}
|
39
|
+
|
40
|
+
r = requests.get(url, params=params)
|
41
|
+
data_json = r.json()
|
42
|
+
stock_code = data_json["result"]["data"][0]["SECUCODE"]
|
43
|
+
return stock_code
|
44
|
+
|
45
|
+
|
15
46
|
def __stock_financial_us_report_em(
|
16
47
|
stock: str = "TSLA", symbol: str = "综合损益表", indicator: str = "年报"
|
17
48
|
) -> str:
|
18
49
|
"""
|
19
50
|
东方财富-美股-财务分析-三大报表
|
20
|
-
https://emweb.
|
51
|
+
https://emweb.eastmoney.com/PC_USF10/pages/index.html?code=TSLA&type=web&color=w#/cwfx
|
21
52
|
:param stock: 股票代码
|
22
53
|
:type stock: str
|
23
54
|
:param symbol: choice of {"资产负债表", "综合损益表", "现金流量表"}
|
@@ -28,6 +59,7 @@ def __stock_financial_us_report_em(
|
|
28
59
|
:rtype: str
|
29
60
|
"""
|
30
61
|
url = "https://datacenter.eastmoney.com/securities/api/data/v1/get"
|
62
|
+
stock = __stock_financial_us_report_query_market_em(stock)
|
31
63
|
if symbol == "资产负债表":
|
32
64
|
report_name = "RPT_USF10_FN_BALANCE"
|
33
65
|
elif symbol == "综合损益表":
|
@@ -41,7 +73,7 @@ def __stock_financial_us_report_em(
|
|
41
73
|
"columns": "SECUCODE,SECURITY_CODE,SECURITY_NAME_ABBR,REPORT,REPORT_DATE,FISCAL_YEAR,CURRENCY,"
|
42
74
|
"ACCOUNT_STANDARD,REPORT_TYPE,DATE_TYPE_CODE",
|
43
75
|
"quoteColumns": "",
|
44
|
-
"filter": f'(SECUCODE="{stock}
|
76
|
+
"filter": f'(SECUCODE="{stock}")',
|
45
77
|
"pageNumber": "",
|
46
78
|
"pageSize": "",
|
47
79
|
"sortTypes": "-1",
|
@@ -77,7 +109,7 @@ def stock_financial_us_report_em(
|
|
77
109
|
) -> pd.DataFrame:
|
78
110
|
"""
|
79
111
|
东方财富-美股-财务分析-三大报表
|
80
|
-
https://emweb.
|
112
|
+
https://emweb.eastmoney.com/PC_USF10/pages/index.html?code=TSLA&type=web&color=w#/cwfx
|
81
113
|
:param stock: 股票代码
|
82
114
|
:type stock: str
|
83
115
|
:param symbol: choice of {"资产负债表", "综合损益表", "现金流量表"}
|
@@ -91,6 +123,7 @@ def stock_financial_us_report_em(
|
|
91
123
|
date_str = __stock_financial_us_report_em(
|
92
124
|
stock=stock, symbol=symbol, indicator=indicator
|
93
125
|
)
|
126
|
+
stock = __stock_financial_us_report_query_market_em(stock)
|
94
127
|
if symbol == "资产负债表":
|
95
128
|
report_name = "RPT_USF10_FN_BALANCE"
|
96
129
|
elif symbol == "综合损益表":
|
@@ -104,7 +137,7 @@ def stock_financial_us_report_em(
|
|
104
137
|
"columns": "SECUCODE,SECURITY_CODE,SECURITY_NAME_ABBR,REPORT_DATE,REPORT_TYPE,REPORT,"
|
105
138
|
"STD_ITEM_CODE,AMOUNT,ITEM_NAME",
|
106
139
|
"quoteColumns": "",
|
107
|
-
"filter": f'(SECUCODE="{stock}
|
140
|
+
"filter": f'(SECUCODE="{stock}")(REPORT in ' + date_str + ")",
|
108
141
|
"pageNumber": "",
|
109
142
|
"pageSize": "",
|
110
143
|
"sortTypes": "1,-1",
|
@@ -124,7 +157,7 @@ def stock_financial_us_analysis_indicator_em(
|
|
124
157
|
) -> pd.DataFrame:
|
125
158
|
"""
|
126
159
|
东方财富-美股-财务分析-主要指标
|
127
|
-
https://emweb.eastmoney.com/PC_USF10/pages/index.html?code=TSLA&type=web&color=w#/cwfx
|
160
|
+
https://emweb.eastmoney.com/PC_USF10/pages/index.html?code=TSLA&type=web&color=w#/cwfx
|
128
161
|
:param symbol: 股票代码
|
129
162
|
:type symbol: str
|
130
163
|
:param indicator: choice of {"年报", "单季报", "累计季报"}
|
@@ -133,6 +166,7 @@ def stock_financial_us_analysis_indicator_em(
|
|
133
166
|
:rtype: pandas.DataFrame
|
134
167
|
"""
|
135
168
|
url = "https://datacenter.eastmoney.com/securities/api/data/v1/get"
|
169
|
+
symbol = __stock_financial_us_report_query_market_em(symbol)
|
136
170
|
params = {
|
137
171
|
"reportName": "RPT_USF10_FN_GMAININDICATOR",
|
138
172
|
"columns": "USF10_FN_GMAININDICATOR",
|
@@ -146,16 +180,16 @@ def stock_financial_us_analysis_indicator_em(
|
|
146
180
|
"v": "01975982096513973",
|
147
181
|
}
|
148
182
|
if indicator == "年报":
|
149
|
-
params.update({"filter": f"""(SECUCODE="{symbol}
|
183
|
+
params.update({"filter": f"""(SECUCODE="{symbol}")(DATE_TYPE_CODE="001")"""})
|
150
184
|
elif indicator == "单季报":
|
151
185
|
params.update(
|
152
186
|
{
|
153
|
-
"filter": f"""(SECUCODE="{symbol}
|
187
|
+
"filter": f"""(SECUCODE="{symbol}")(DATE_TYPE_CODE in ("003","006","007","008"))"""
|
154
188
|
}
|
155
189
|
)
|
156
190
|
elif indicator == "累计季报":
|
157
191
|
params.update(
|
158
|
-
{"filter": f"""(SECUCODE="{symbol}
|
192
|
+
{"filter": f"""(SECUCODE="{symbol}")(DATE_TYPE_CODE in ("002","004"))"""}
|
159
193
|
)
|
160
194
|
else:
|
161
195
|
raise ValueError("请输入正确的 indicator 参数")
|
@@ -182,7 +216,7 @@ if __name__ == "__main__":
|
|
182
216
|
print(stock_financial_us_analysis_indicator_em_df)
|
183
217
|
|
184
218
|
stock_financial_us_report_em_df = stock_financial_us_report_em(
|
185
|
-
stock="
|
219
|
+
stock="BABA", symbol="资产负债表", indicator="年报"
|
186
220
|
)
|
187
221
|
print(stock_financial_us_report_em_df)
|
188
222
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
akshare/__init__.py,sha256=
|
1
|
+
akshare/__init__.py,sha256=drq32NLwk6bHnbDO3B6SkfkA7ShbYhVEJCSSBPLUld0,192321
|
2
2
|
akshare/datasets.py,sha256=rKuRNZrqi6IMsZ9nyvO3Rx02js0tH3zMLjz8HQNAoPQ,963
|
3
3
|
akshare/exceptions.py,sha256=WEJjIhSmJ_xXNW6grwV4nufE_cfmmyuhmueVGiN1VAg,878
|
4
4
|
akshare/request.py,sha256=HtFFf9MhfEibR-ETWe-1Tts6ELU4VKSqA-ghaXjegQM,4252
|
@@ -225,7 +225,7 @@ akshare/qhkc_web/qhkc_tool.py,sha256=pkazsrQQ-pAQgERzHxXWHnEI1iZvo-dGO089c4LGHT8
|
|
225
225
|
akshare/rate/__init__.py,sha256=gXRhfZhrFm7iIQMmkNkl-ZQUyim2wHyZLVllHQlwO1Q,83
|
226
226
|
akshare/rate/repo_rate.py,sha256=BvTBSQrIwNurGErFwmNW9WjfCbOayJl8dNhs6eqUgE4,4243
|
227
227
|
akshare/reits/__init__.py,sha256=0MO0aWWC8jQBth2IPl3W63vZKvuDb1OJqIpHE-sCQVU,82
|
228
|
-
akshare/reits/reits_basic.py,sha256=
|
228
|
+
akshare/reits/reits_basic.py,sha256=pR6SZmd-nuOw42YBxCeVrLmx850-JXxPeRiX-Oryv9s,5822
|
229
229
|
akshare/sport/__init__.py,sha256=aMsxmuOMZFkcI8tGmQanhPyPwyBpdeApAWyCtDRKMeg,81
|
230
230
|
akshare/sport/sport_olympic.py,sha256=CB1cvLpz2BWuadfonhHuQ17Qxt9X_3ks0Zc5Bff2w9k,818
|
231
231
|
akshare/spot/__init__.py,sha256=VGuha94pXYoezmMs3F3Q_ofaN8RZIrkJ2NtVv8hWCjY,83
|
@@ -301,7 +301,7 @@ akshare/stock_feature/stock_a_pe_and_pb.py,sha256=9HfjTSL_DTlAVvv7o3--pOdZiFwhRz
|
|
301
301
|
akshare/stock_feature/stock_account_em.py,sha256=PA-531xnv5uerFrYGc40mk8q8O0DGciHC_XVlE9udis,3342
|
302
302
|
akshare/stock_feature/stock_all_pb.py,sha256=2yQLq03qXNbTB5AtJ-Q8uJldOluElH5zTjYneY3aaZ0,1194
|
303
303
|
akshare/stock_feature/stock_analyst_em.py,sha256=Md3_G-Px0O1lk4dx5dCEKl8Vjgwt79Sh-FSh_sW1Elo,9508
|
304
|
-
akshare/stock_feature/stock_board_concept_ths.py,sha256=
|
304
|
+
akshare/stock_feature/stock_board_concept_ths.py,sha256=SsJ_kPbs4v9Tge25GLe3LA-meN-c_E_nAGHF3Hfi0IY,11265
|
305
305
|
akshare/stock_feature/stock_board_industry_ths.py,sha256=c22JP9MJGncLaqvBmkAxHUz3HKNMCKf58Rug9n2vlAU,15102
|
306
306
|
akshare/stock_feature/stock_buffett_index_lg.py,sha256=NpNccHmGjtqLz6aUladB6InPzO2pjoImbgCgmNEYUuM,2027
|
307
307
|
akshare/stock_feature/stock_classify_sina.py,sha256=Lg7ROG5W9HioFRplJI2rZ6tAAHM09N3g9qF6kReIQYI,3210
|
@@ -367,7 +367,7 @@ akshare/stock_fundamental/stock_basic_info_xq.py,sha256=PJveGTe3NG5F5owYdLFbpC6e
|
|
367
367
|
akshare/stock_fundamental/stock_finance_hk_em.py,sha256=cCiaWX6ZyKe4W2H9qe-ttpMeVMWp6tHdvnjhRuYQhl8,7017
|
368
368
|
akshare/stock_fundamental/stock_finance_sina.py,sha256=432EjGHWFtG0L32PNSC_HWpVLDntabNt9koyUtNG77E,30718
|
369
369
|
akshare/stock_fundamental/stock_finance_ths.py,sha256=nS9bt_hzklzh7pBTCH1PjOa69OUcNZ41Z_zSHiz9Y1U,11527
|
370
|
-
akshare/stock_fundamental/stock_finance_us_em.py,sha256=
|
370
|
+
akshare/stock_fundamental/stock_finance_us_em.py,sha256=thRKe9OIfZFQ0q_kAM2kJXCKXGhyPFjHKiiGEK95K2g,9799
|
371
371
|
akshare/stock_fundamental/stock_hold.py,sha256=h8V5v_0YOi3FJPc1w95WBaO0v3n87lcufcUlu-i6XXk,5394
|
372
372
|
akshare/stock_fundamental/stock_ipo_declare.py,sha256=18j2542TT2nCJ1HWBcT6-HupRbXvesA30qqejknn-kM,1809
|
373
373
|
akshare/stock_fundamental/stock_kcb_detail_sse.py,sha256=MBanq3sDvb0OTbUl_gg7avDUQg_3Ugzqr43cB43fp60,940
|
@@ -392,10 +392,10 @@ akshare/utils/func.py,sha256=4cwmXFztU86yJNONJ40KJLvsIEQHBbct4iMm3zT2v30,2315
|
|
392
392
|
akshare/utils/multi_decrypt.py,sha256=aWoL2iEPeuXHJg8-n7OtMKixLnIhfzepACgxfrfmQB4,1657
|
393
393
|
akshare/utils/token_process.py,sha256=K4rGXjh_tgugbRcyOK2h2x0jP3PT65IIK7nxhUKhOeQ,666
|
394
394
|
akshare/utils/tqdm.py,sha256=MuPNwcswkOGjwWQOMWXi9ZvQ_RmW4obCWRj2i7HM7FE,847
|
395
|
-
akshare-1.16.
|
395
|
+
akshare-1.16.64.dist-info/licenses/LICENSE,sha256=mmSZCPgfHiVw34LXuFArd-SUgQtBJ_QsIlh-kWlDHfs,1073
|
396
396
|
tests/__init__.py,sha256=gNzhlO0UPjFq6Ieb38kaVIODXv4cTDByrdohAZnDYt4,82
|
397
397
|
tests/test_func.py,sha256=j1MGYbZI2if2j_LY1S4FLsf4qfq4NwVqD5wmRlv5Log,832
|
398
|
-
akshare-1.16.
|
399
|
-
akshare-1.16.
|
400
|
-
akshare-1.16.
|
401
|
-
akshare-1.16.
|
398
|
+
akshare-1.16.64.dist-info/METADATA,sha256=usbDoPIIKAsJsEn-7RiDnnT0agiNnNr2GandY3htpbM,13767
|
399
|
+
akshare-1.16.64.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
400
|
+
akshare-1.16.64.dist-info/top_level.txt,sha256=jsf9ZzZPmHaISTVumQPsAw7vv7Yv-PdEVW70SMEelQQ,14
|
401
|
+
akshare-1.16.64.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|