akshare 1.16.2__py3-none-any.whl → 1.16.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.
Potentially problematic release.
This version of akshare might be problematic. Click here for more details.
- akshare/__init__.py +3 -1
- akshare/index/index_stock_hk.py +4 -4
- akshare/index/index_stock_zh.py +10 -37
- akshare/option/option_em.py +4 -4
- akshare/option/option_finance_sina.py +1 -1
- akshare/stock/stock_board_concept_em.py +7 -36
- akshare/stock/stock_hk_sina.py +3 -3
- akshare/stock_feature/stock_hist_em.py +1 -1
- akshare/stock_feature/stock_hsgt_em.py +2 -2
- {akshare-1.16.2.dist-info → akshare-1.16.4.dist-info}/METADATA +1 -1
- {akshare-1.16.2.dist-info → akshare-1.16.4.dist-info}/RECORD +14 -14
- {akshare-1.16.2.dist-info → akshare-1.16.4.dist-info}/LICENSE +0 -0
- {akshare-1.16.2.dist-info → akshare-1.16.4.dist-info}/WHEEL +0 -0
- {akshare-1.16.2.dist-info → akshare-1.16.4.dist-info}/top_level.txt +0 -0
akshare/__init__.py
CHANGED
|
@@ -3011,9 +3011,11 @@ amac_manager_cancelled_info # 中国证券投资基金业协会-信息公示-诚
|
|
|
3011
3011
|
1.15.99 fix: fix stock_esg_zd_sina interface
|
|
3012
3012
|
1.16.1 fix: fix stock_main_fund_flow interface
|
|
3013
3013
|
1.16.2 fix: fix stock_board_industry_hist_em interface
|
|
3014
|
+
1.16.3 fix: fix stock_zh_index_spot_em interface
|
|
3015
|
+
1.16.4 fix: fix stock_hk_ggt_components_em interface
|
|
3014
3016
|
"""
|
|
3015
3017
|
|
|
3016
|
-
__version__ = "1.16.
|
|
3018
|
+
__version__ = "1.16.4"
|
|
3017
3019
|
__author__ = "AKFamily"
|
|
3018
3020
|
|
|
3019
3021
|
import sys
|
akshare/index/index_stock_hk.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env python
|
|
2
2
|
# -*- coding:utf-8 -*-
|
|
3
3
|
"""
|
|
4
|
-
Date:
|
|
4
|
+
Date: 2025/2/18 16:00
|
|
5
5
|
Desc: 港股股票指数数据-新浪-东财
|
|
6
6
|
所有指数-实时行情数据和历史行情数据
|
|
7
7
|
https://finance.sina.com.cn/realstock/company/sz399552/nc.shtml
|
|
@@ -156,7 +156,7 @@ def stock_hk_index_spot_em() -> pd.DataFrame:
|
|
|
156
156
|
"pn": "1",
|
|
157
157
|
"pz": "20000",
|
|
158
158
|
"po": "1",
|
|
159
|
-
"np": "
|
|
159
|
+
"np": "2",
|
|
160
160
|
"ut": "bd1d9ddb04089700cf9c27f6f7426281",
|
|
161
161
|
"fltt": "2",
|
|
162
162
|
"invt": "2",
|
|
@@ -169,9 +169,9 @@ def stock_hk_index_spot_em() -> pd.DataFrame:
|
|
|
169
169
|
}
|
|
170
170
|
r = requests.get(url, params=params)
|
|
171
171
|
data_json = r.json()
|
|
172
|
-
temp_df = pd.DataFrame(data_json["data"]["diff"])
|
|
172
|
+
temp_df = pd.DataFrame(data_json["data"]["diff"]).T
|
|
173
173
|
temp_df.reset_index(inplace=True)
|
|
174
|
-
temp_df["index"] = temp_df["index"] + 1
|
|
174
|
+
temp_df["index"] = temp_df["index"].astype(int) + 1
|
|
175
175
|
temp_df.rename(
|
|
176
176
|
columns={
|
|
177
177
|
"index": "序号",
|
akshare/index/index_stock_zh.py
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env python
|
|
2
2
|
# -*- coding:utf-8 -*-
|
|
3
3
|
"""
|
|
4
|
-
Date:
|
|
4
|
+
Date: 2025/2/17 20:30
|
|
5
5
|
Desc: 股票指数数据-新浪-东财-腾讯
|
|
6
6
|
所有指数-实时行情数据和历史行情数据
|
|
7
7
|
https://finance.sina.com.cn/realstock/company/sz399552/nc.shtml
|
|
8
8
|
"""
|
|
9
9
|
|
|
10
|
-
import math
|
|
11
10
|
import datetime
|
|
12
11
|
import re
|
|
13
12
|
|
|
@@ -136,9 +135,9 @@ def __stock_zh_main_spot_em() -> pd.DataFrame:
|
|
|
136
135
|
url = "https://33.push2.eastmoney.com/api/qt/clist/get"
|
|
137
136
|
params = {
|
|
138
137
|
"pn": "1",
|
|
139
|
-
"pz": "
|
|
138
|
+
"pz": "50000",
|
|
140
139
|
"po": "1",
|
|
141
|
-
"np": "
|
|
140
|
+
"np": "2",
|
|
142
141
|
"ut": "bd1d9ddb04089700cf9c27f6f7426281",
|
|
143
142
|
"fltt": "2",
|
|
144
143
|
"invt": "2",
|
|
@@ -152,22 +151,9 @@ def __stock_zh_main_spot_em() -> pd.DataFrame:
|
|
|
152
151
|
}
|
|
153
152
|
r = requests.get(url, params=params)
|
|
154
153
|
data_json = r.json()
|
|
155
|
-
|
|
156
|
-
temp_list = []
|
|
157
|
-
tqdm = get_tqdm()
|
|
158
|
-
for page in tqdm(range(1, total_page + 1), leave=False):
|
|
159
|
-
params.update(
|
|
160
|
-
{
|
|
161
|
-
"pn": page,
|
|
162
|
-
}
|
|
163
|
-
)
|
|
164
|
-
r = requests.get(url, params=params, timeout=15)
|
|
165
|
-
data_json = r.json()
|
|
166
|
-
inner_temp_df = pd.DataFrame(data_json["data"]["diff"])
|
|
167
|
-
temp_list.append(inner_temp_df)
|
|
168
|
-
temp_df = pd.concat(temp_list, ignore_index=True)
|
|
154
|
+
temp_df = pd.DataFrame(data_json["data"]["diff"]).T
|
|
169
155
|
temp_df.reset_index(inplace=True)
|
|
170
|
-
temp_df["index"] = temp_df["index"] + 1
|
|
156
|
+
temp_df["index"] = temp_df["index"].astype(int) + 1
|
|
171
157
|
temp_df.rename(
|
|
172
158
|
columns={
|
|
173
159
|
"index": "序号",
|
|
@@ -240,14 +226,14 @@ def stock_zh_index_spot_em(symbol: str = "沪深重要指数") -> pd.DataFrame:
|
|
|
240
226
|
}
|
|
241
227
|
params = {
|
|
242
228
|
"pn": "1",
|
|
243
|
-
"pz": "
|
|
229
|
+
"pz": "20000",
|
|
244
230
|
"po": "1",
|
|
245
|
-
"np": "
|
|
231
|
+
"np": "2",
|
|
246
232
|
"ut": "bd1d9ddb04089700cf9c27f6f7426281",
|
|
247
233
|
"fltt": "2",
|
|
248
234
|
"invt": "2",
|
|
249
235
|
"wbp2u": "|0|0|0|web",
|
|
250
|
-
"fid": "
|
|
236
|
+
"fid": "f3",
|
|
251
237
|
"fs": symbol_map[symbol],
|
|
252
238
|
"fields": "f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f12,f13,f14,f15,f16,f17,f18,f20,f21,f23,f24,f25,"
|
|
253
239
|
"f26,f22,f33,f11,f62,f128,f136,f115,f152",
|
|
@@ -255,22 +241,9 @@ def stock_zh_index_spot_em(symbol: str = "沪深重要指数") -> pd.DataFrame:
|
|
|
255
241
|
}
|
|
256
242
|
r = requests.get(url, params=params)
|
|
257
243
|
data_json = r.json()
|
|
258
|
-
|
|
259
|
-
temp_list = []
|
|
260
|
-
tqdm = get_tqdm()
|
|
261
|
-
for page in tqdm(range(1, total_page + 1), leave=False):
|
|
262
|
-
params.update(
|
|
263
|
-
{
|
|
264
|
-
"pn": page,
|
|
265
|
-
}
|
|
266
|
-
)
|
|
267
|
-
r = requests.get(url, params=params, timeout=15)
|
|
268
|
-
data_json = r.json()
|
|
269
|
-
inner_temp_df = pd.DataFrame(data_json["data"]["diff"])
|
|
270
|
-
temp_list.append(inner_temp_df)
|
|
271
|
-
temp_df = pd.concat(temp_list, ignore_index=True)
|
|
244
|
+
temp_df = pd.DataFrame(data_json["data"]["diff"]).T
|
|
272
245
|
temp_df.reset_index(inplace=True)
|
|
273
|
-
temp_df["index"] = temp_df["index"] + 1
|
|
246
|
+
temp_df["index"] = temp_df["index"].astype(int) + 1
|
|
274
247
|
temp_df.rename(
|
|
275
248
|
columns={
|
|
276
249
|
"index": "序号",
|
akshare/option/option_em.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env python
|
|
2
2
|
# -*- coding:utf-8 -*-
|
|
3
3
|
"""
|
|
4
|
-
Date:
|
|
4
|
+
Date: 2025/2/18 16:30
|
|
5
5
|
Desc: 东方财富网-行情中心-期权市场
|
|
6
6
|
https://quote.eastmoney.com/center/qqsc.html
|
|
7
7
|
"""
|
|
@@ -22,7 +22,7 @@ def option_current_em() -> pd.DataFrame:
|
|
|
22
22
|
"pn": "1",
|
|
23
23
|
"pz": "200000",
|
|
24
24
|
"po": "1",
|
|
25
|
-
"np": "
|
|
25
|
+
"np": "2",
|
|
26
26
|
"ut": "bd1d9ddb04089700cf9c27f6f7426281",
|
|
27
27
|
"fltt": "2",
|
|
28
28
|
"invt": "2",
|
|
@@ -34,9 +34,9 @@ def option_current_em() -> pd.DataFrame:
|
|
|
34
34
|
}
|
|
35
35
|
r = requests.get(url, params=params)
|
|
36
36
|
data_json = r.json()
|
|
37
|
-
temp_df = pd.DataFrame(data_json["data"]["diff"])
|
|
37
|
+
temp_df = pd.DataFrame(data_json["data"]["diff"]).T
|
|
38
38
|
temp_df.reset_index(inplace=True)
|
|
39
|
-
temp_df["index"] = temp_df["index"] + 1
|
|
39
|
+
temp_df["index"] = temp_df["index"].astype(int) + 1
|
|
40
40
|
temp_df.columns = [
|
|
41
41
|
"序号",
|
|
42
42
|
"_",
|
|
@@ -975,5 +975,5 @@ if __name__ == "__main__":
|
|
|
975
975
|
option_current_em_df = option_current_em()
|
|
976
976
|
print(option_current_em_df)
|
|
977
977
|
|
|
978
|
-
option_minute_em_df = option_minute_em(symbol="
|
|
978
|
+
option_minute_em_df = option_minute_em(symbol="10008594")
|
|
979
979
|
print(option_minute_em_df)
|
|
@@ -1,19 +1,16 @@
|
|
|
1
1
|
#!/usr/bin/env python
|
|
2
2
|
# -*- coding:utf-8 -*-
|
|
3
3
|
"""
|
|
4
|
-
Date: 2025/2/
|
|
4
|
+
Date: 2025/2/18 14:10
|
|
5
5
|
Desc: 东方财富-沪深板块-概念板块
|
|
6
6
|
https://quote.eastmoney.com/center/boardlist.html#concept_board
|
|
7
7
|
"""
|
|
8
8
|
|
|
9
|
-
import math
|
|
10
9
|
from functools import lru_cache
|
|
11
10
|
|
|
12
11
|
import pandas as pd
|
|
13
12
|
import requests
|
|
14
13
|
|
|
15
|
-
from akshare.utils.tqdm import get_tqdm
|
|
16
|
-
|
|
17
14
|
|
|
18
15
|
@lru_cache()
|
|
19
16
|
def stock_board_concept_name_em() -> pd.DataFrame:
|
|
@@ -26,9 +23,9 @@ def stock_board_concept_name_em() -> pd.DataFrame:
|
|
|
26
23
|
url = "https://79.push2.eastmoney.com/api/qt/clist/get"
|
|
27
24
|
params = {
|
|
28
25
|
"pn": "1",
|
|
29
|
-
"pz": "
|
|
26
|
+
"pz": "50000",
|
|
30
27
|
"po": "1",
|
|
31
|
-
"np": "
|
|
28
|
+
"np": "2",
|
|
32
29
|
"ut": "bd1d9ddb04089700cf9c27f6f7426281",
|
|
33
30
|
"fltt": "2",
|
|
34
31
|
"invt": "2",
|
|
@@ -39,20 +36,7 @@ def stock_board_concept_name_em() -> pd.DataFrame:
|
|
|
39
36
|
}
|
|
40
37
|
r = requests.get(url, params=params)
|
|
41
38
|
data_json = r.json()
|
|
42
|
-
|
|
43
|
-
temp_list = []
|
|
44
|
-
tqdm = get_tqdm()
|
|
45
|
-
for page in tqdm(range(1, total_page + 1), leave=False):
|
|
46
|
-
params.update(
|
|
47
|
-
{
|
|
48
|
-
"pn": page,
|
|
49
|
-
}
|
|
50
|
-
)
|
|
51
|
-
r = requests.get(url, params=params, timeout=15)
|
|
52
|
-
data_json = r.json()
|
|
53
|
-
inner_temp_df = pd.DataFrame(data_json["data"]["diff"])
|
|
54
|
-
temp_list.append(inner_temp_df)
|
|
55
|
-
temp_df = pd.concat(temp_list, ignore_index=True)
|
|
39
|
+
temp_df = pd.DataFrame(data_json["data"]["diff"]).T
|
|
56
40
|
temp_df.reset_index(inplace=True)
|
|
57
41
|
temp_df["index"] = range(1, len(temp_df) + 1)
|
|
58
42
|
temp_df.columns = [
|
|
@@ -330,9 +314,9 @@ def stock_board_concept_cons_em(symbol: str = "融资融券") -> pd.DataFrame:
|
|
|
330
314
|
url = "https://29.push2.eastmoney.com/api/qt/clist/get"
|
|
331
315
|
params = {
|
|
332
316
|
"pn": "1",
|
|
333
|
-
"pz": "
|
|
317
|
+
"pz": "50000",
|
|
334
318
|
"po": "1",
|
|
335
|
-
"np": "
|
|
319
|
+
"np": "2",
|
|
336
320
|
"ut": "bd1d9ddb04089700cf9c27f6f7426281",
|
|
337
321
|
"fltt": "2",
|
|
338
322
|
"invt": "2",
|
|
@@ -344,20 +328,7 @@ def stock_board_concept_cons_em(symbol: str = "融资融券") -> pd.DataFrame:
|
|
|
344
328
|
}
|
|
345
329
|
r = requests.get(url, params=params)
|
|
346
330
|
data_json = r.json()
|
|
347
|
-
|
|
348
|
-
temp_list = []
|
|
349
|
-
tqdm = get_tqdm()
|
|
350
|
-
for page in tqdm(range(1, total_page + 1), leave=False):
|
|
351
|
-
params.update(
|
|
352
|
-
{
|
|
353
|
-
"pn": page,
|
|
354
|
-
}
|
|
355
|
-
)
|
|
356
|
-
r = requests.get(url, params=params, timeout=15)
|
|
357
|
-
data_json = r.json()
|
|
358
|
-
inner_temp_df = pd.DataFrame(data_json["data"]["diff"])
|
|
359
|
-
temp_list.append(inner_temp_df)
|
|
360
|
-
temp_df = pd.concat(temp_list, ignore_index=True)
|
|
331
|
+
temp_df = pd.DataFrame(data_json["data"]["diff"]).T
|
|
361
332
|
temp_df.reset_index(inplace=True)
|
|
362
333
|
temp_df["index"] = range(1, len(temp_df) + 1)
|
|
363
334
|
temp_df.columns = [
|
akshare/stock/stock_hk_sina.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env python
|
|
2
2
|
# -*- coding:utf-8 -*-
|
|
3
3
|
"""
|
|
4
|
-
Date:
|
|
4
|
+
Date: 2025/2/18 16:00
|
|
5
5
|
Desc: 新浪财经-港股-实时行情数据和历史行情数据(包含前复权和后复权因子)
|
|
6
|
-
|
|
6
|
+
https://stock.finance.sina.com.cn/hkstock/quotes/00700.html
|
|
7
7
|
"""
|
|
8
8
|
|
|
9
9
|
import pandas as pd
|
|
@@ -24,7 +24,7 @@ from akshare.utils import demjson
|
|
|
24
24
|
def stock_hk_spot() -> pd.DataFrame:
|
|
25
25
|
"""
|
|
26
26
|
新浪财经-港股的所有港股的实时行情数据
|
|
27
|
-
|
|
27
|
+
https://vip.stock.finance.sina.com.cn/mkt/#qbgg_hk
|
|
28
28
|
:return: 实时行情数据
|
|
29
29
|
:rtype: pandas.DataFrame
|
|
30
30
|
"""
|
|
@@ -2007,7 +2007,7 @@ if __name__ == "__main__":
|
|
|
2007
2007
|
print(stock_us_hist_min_em_df)
|
|
2008
2008
|
|
|
2009
2009
|
stock_zh_a_hist_min_em_df = stock_zh_a_hist_min_em(
|
|
2010
|
-
symbol="
|
|
2010
|
+
symbol="300364",
|
|
2011
2011
|
start_date="2025-02-14 09:30:00",
|
|
2012
2012
|
end_date="2025-02-14 15:00:00",
|
|
2013
2013
|
period="5",
|
|
@@ -102,7 +102,7 @@ def stock_hk_ggt_components_em() -> pd.DataFrame:
|
|
|
102
102
|
"pn": "1",
|
|
103
103
|
"pz": "5000",
|
|
104
104
|
"po": "1",
|
|
105
|
-
"np": "
|
|
105
|
+
"np": "2",
|
|
106
106
|
"ut": "bd1d9ddb04089700cf9c27f6f7426281",
|
|
107
107
|
"fltt": "2",
|
|
108
108
|
"fid": "f3",
|
|
@@ -113,7 +113,7 @@ def stock_hk_ggt_components_em() -> pd.DataFrame:
|
|
|
113
113
|
}
|
|
114
114
|
r = requests.get(url, params=params)
|
|
115
115
|
data_json = r.json()
|
|
116
|
-
temp_df = pd.DataFrame(data_json["data"]["diff"])
|
|
116
|
+
temp_df = pd.DataFrame(data_json["data"]["diff"]).T
|
|
117
117
|
temp_df.reset_index(inplace=True)
|
|
118
118
|
temp_df["index"] = temp_df.index + 1
|
|
119
119
|
temp_df.columns = [
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
akshare/__init__.py,sha256=
|
|
1
|
+
akshare/__init__.py,sha256=o5znWn0GqKnvIikYVRyipA1lyjbleZBb1mKtZDU_BqM,187726
|
|
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
|
|
@@ -165,9 +165,9 @@ akshare/index/index_option_qvix.py,sha256=UHqLJXObn31Oa-RAB4Lgk5LwZ2FYAr1p--JvEf
|
|
|
165
165
|
akshare/index/index_research_fund_sw.py,sha256=kVYjBl3vZg6CyYBCrxZiSv8taHMnqmG7PQ-LVmMNd3I,4603
|
|
166
166
|
akshare/index/index_research_sw.py,sha256=Mm1YtiP-PXhDysJwmFidX3RZSZZ92AyXpjl_tVrjdwA,21758
|
|
167
167
|
akshare/index/index_spot.py,sha256=meTBTCp2DPVTX_N3qpCLtkI-0q3XhrJ3gndNugRBGKg,1767
|
|
168
|
-
akshare/index/index_stock_hk.py,sha256=
|
|
168
|
+
akshare/index/index_stock_hk.py,sha256=eCtL477XlLpbOvBRWG_ooDlFV4kFRk8na0k2r_rr_GU,9795
|
|
169
169
|
akshare/index/index_stock_us_sina.py,sha256=IxOk4G49oasv7EfEQenL9-GLuelyUus6c4JPyRlaOzY,1551
|
|
170
|
-
akshare/index/index_stock_zh.py,sha256=
|
|
170
|
+
akshare/index/index_stock_zh.py,sha256=T79qIxZbRub4yprZ5ukEllWqfj-WV2Zkx4i7KyEwGjE,17860
|
|
171
171
|
akshare/index/index_stock_zh_csindex.py,sha256=sRVoDD-fitqAMuDs0XPm1oCz2nZ2QTkvNswL1WvXpwo,4164
|
|
172
172
|
akshare/index/index_sugar.py,sha256=B_Nj9Q6JP-Y_d7myZ0C79izTxxrbuZIp1Vv_CilVMOc,5006
|
|
173
173
|
akshare/index/index_sw.py,sha256=hETMmFszQb7JDY8UHjLK8szfwkr7Ui_6QcseOoEfxaI,10456
|
|
@@ -194,9 +194,9 @@ akshare/option/option_commodity.py,sha256=gJ22bfXMEz9vWXuVjgNU9mvvRlXcNWjW8hUxG7
|
|
|
194
194
|
akshare/option/option_commodity_sina.py,sha256=r6qK_K7w3A6Uqp5ZtBb4pW7vH04oMyeCEZLLGqi0jpA,7776
|
|
195
195
|
akshare/option/option_czce.py,sha256=L4i7TVKcOns5ZKoqq-mrSykdx3SGwu6OL4eI77-A_lc,1812
|
|
196
196
|
akshare/option/option_daily_stats_sse_szse.py,sha256=Ip_vE81qbEGt4ocbtWfUT7XGu0HWU0zKkzauZeq9RJA,4962
|
|
197
|
-
akshare/option/option_em.py,sha256=
|
|
197
|
+
akshare/option/option_em.py,sha256=5Y9Fqhk6VxsDLxQLJQyptkgAEAszIQiDyMl_wRfZjAg,5963
|
|
198
198
|
akshare/option/option_finance.py,sha256=7rnEeHo-7Sddrs36Q4c99CXL_9m8IJzw9S1Aqh3Bw90,12568
|
|
199
|
-
akshare/option/option_finance_sina.py,sha256
|
|
199
|
+
akshare/option/option_finance_sina.py,sha256=Pzsrl_NKN99nWPSAirq7ushGwSfd738ISVYeCHxMZXE,37843
|
|
200
200
|
akshare/option/option_lhb_em.py,sha256=VHrV2BWAPE7tj8q7J5Crjm-sey8QarYd1lgxKbkX2CQ,9090
|
|
201
201
|
akshare/option/option_premium_analysis_em.py,sha256=uL-wxwsZu3UbeUmHs5W1x3PBfk0HfVyGubx6FvkeyPg,2471
|
|
202
202
|
akshare/option/option_risk_analysis_em.py,sha256=WYwjXzZhIr8WpwoVKXfAnFA7Ylx_vLQiFDeTxDvrnBk,2577
|
|
@@ -231,7 +231,7 @@ akshare/stock/__init__.py,sha256=jSa9260d6aNZajaW68chI2mpPkDSXLOgi3eXrqo4MQ8,82
|
|
|
231
231
|
akshare/stock/cons.py,sha256=0oyUW5Pu-iQ3qgh-TFemM_O5f1fAwVe-PsI4Qa8EYpQ,42956
|
|
232
232
|
akshare/stock/stock_allotment_cninfo.py,sha256=OVjVdWp2XVRNbJvVgtgVVoBmPBJgBB4RyIIgA_9QHM8,6066
|
|
233
233
|
akshare/stock/stock_ask_bid_em.py,sha256=nXQhYIpU4k7GUc7nthWC29zVS9GhYb9ppQTLD0gycF4,3438
|
|
234
|
-
akshare/stock/stock_board_concept_em.py,sha256=
|
|
234
|
+
akshare/stock/stock_board_concept_em.py,sha256=FC_Hw-ZAgFJzg5uuAPSoY5sbgw8pkHqGqF86v7lvQnk,14095
|
|
235
235
|
akshare/stock/stock_board_industry_em.py,sha256=ViXBcqSfUnBSvCDo-D7ZRupd9PpI1uEQ19KMAuGxGuQ,16201
|
|
236
236
|
akshare/stock/stock_cg_equity_mortgage.py,sha256=Pui5aWKKPwGuKjF_GNpejDzsMGNPrxiaJviLz3x2e9I,3426
|
|
237
237
|
akshare/stock/stock_cg_guarantee.py,sha256=ts7qcQhhyN1PHB7Q4XlMn38HhfVvubOvky9RZfmUP94,3844
|
|
@@ -244,7 +244,7 @@ akshare/stock/stock_gsrl_em.py,sha256=oy5vO681ZPTEehZgz10T8jgIQ8dNm_E7MXGr1PGoHq
|
|
|
244
244
|
akshare/stock/stock_hk_famous.py,sha256=g-p1cdRibei9fw2HEMPyarLP-wT4bFwIK7Mxi77jH9E,3015
|
|
245
245
|
akshare/stock/stock_hk_fhpx_ths.py,sha256=68soKJIOMoAGuCvJIMZBVU-2wL_umtv67SuqVzl2C14,2191
|
|
246
246
|
akshare/stock/stock_hk_hot_rank_em.py,sha256=IhLGahWXfYPQRrCoB1Ph7DRbs_39BcrmXpIgXgEkttg,4746
|
|
247
|
-
akshare/stock/stock_hk_sina.py,sha256=
|
|
247
|
+
akshare/stock/stock_hk_sina.py,sha256=7tD7P4lo6U40s-jkS9E128voZgYx75vbxmG3M0LyqNg,9589
|
|
248
248
|
akshare/stock/stock_hold_control_cninfo.py,sha256=J1CGX1tZ22UJdOWAkED19o7vdE10Hke91cEbiN1RIYQ,10038
|
|
249
249
|
akshare/stock/stock_hold_control_em.py,sha256=iBgnSEV7aYdsS2Ce7ELIUqVo-polfYdqcd6UmEuVN7g,7349
|
|
250
250
|
akshare/stock/stock_hold_num_cninfo.py,sha256=JY9LcZMhhTiCHfQJv4pwMrLrpUxTKGLE4oRD6pvflsU,3706
|
|
@@ -311,11 +311,11 @@ akshare/stock_feature/stock_gdhs.py,sha256=Z6ZMy1A03BqMu9TghcIu2Sd_wwEtpIH7qawHu
|
|
|
311
311
|
akshare/stock_feature/stock_gdzjc_em.py,sha256=SHJH5iS3_NhvjTqRXF0vPooZl0s_ASeyZmNCC50ZYqs,4426
|
|
312
312
|
akshare/stock_feature/stock_gpzy_em.py,sha256=FgyjVgdoxrtMM7WwxdQJxK0mYGJklIHaT9KmMCFmEPM,17869
|
|
313
313
|
akshare/stock_feature/stock_gxl_lg.py,sha256=I8TpDEpFzadZSSyZisyIk6163mJlRxup91dmlBH4t4U,2641
|
|
314
|
-
akshare/stock_feature/stock_hist_em.py,sha256=
|
|
314
|
+
akshare/stock_feature/stock_hist_em.py,sha256=izbhwdVCUp672hvHBSNpP4eXdFd1NDlJkUW-Z42KBDo,69295
|
|
315
315
|
akshare/stock_feature/stock_hist_tx.py,sha256=WpLsbkG2didSx7lYNkSbTWNTrLhUKbcopfD18WO2Rlc,3397
|
|
316
316
|
akshare/stock_feature/stock_hk_valuation_baidu.py,sha256=_sErx4UhNsSXJgXyPfrL0aPxkW53Mg1zH9gEKoziaCA,1968
|
|
317
317
|
akshare/stock_feature/stock_hot_xq.py,sha256=NmoH4x-0hiDztj-YwzMFVIyOICQ2wUUBbhjt91q-tq4,9112
|
|
318
|
-
akshare/stock_feature/stock_hsgt_em.py,sha256=
|
|
318
|
+
akshare/stock_feature/stock_hsgt_em.py,sha256=A10L3LX44YrkcYi7kT9Y0-XK_r0mv9c50x5emshh25Q,56690
|
|
319
319
|
akshare/stock_feature/stock_hsgt_exchange_rate.py,sha256=YvhvdGx1nBJ_1swos1YNOtzy0GMFYo8MgNBh5QKphtE,6838
|
|
320
320
|
akshare/stock_feature/stock_hsgt_min_em.py,sha256=KLeez7MQwBAcO-RT7n41LOikUfvXDGK0-G1n9av5mtY,2883
|
|
321
321
|
akshare/stock_feature/stock_info.py,sha256=AQ4ZMXAks3qCxk3lbH_YpsqC-qQHpZ49UGk0Mm08d2E,9192
|
|
@@ -380,8 +380,8 @@ akshare/utils/token_process.py,sha256=K4rGXjh_tgugbRcyOK2h2x0jP3PT65IIK7nxhUKhOe
|
|
|
380
380
|
akshare/utils/tqdm.py,sha256=MuPNwcswkOGjwWQOMWXi9ZvQ_RmW4obCWRj2i7HM7FE,847
|
|
381
381
|
tests/__init__.py,sha256=gNzhlO0UPjFq6Ieb38kaVIODXv4cTDByrdohAZnDYt4,82
|
|
382
382
|
tests/test_func.py,sha256=j1MGYbZI2if2j_LY1S4FLsf4qfq4NwVqD5wmRlv5Log,832
|
|
383
|
-
akshare-1.16.
|
|
384
|
-
akshare-1.16.
|
|
385
|
-
akshare-1.16.
|
|
386
|
-
akshare-1.16.
|
|
387
|
-
akshare-1.16.
|
|
383
|
+
akshare-1.16.4.dist-info/LICENSE,sha256=mmSZCPgfHiVw34LXuFArd-SUgQtBJ_QsIlh-kWlDHfs,1073
|
|
384
|
+
akshare-1.16.4.dist-info/METADATA,sha256=GkFQ7e-yOyZ1_FCqJuNJ_rKhRjX8wUFd0sp3C-rKB8M,13678
|
|
385
|
+
akshare-1.16.4.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
386
|
+
akshare-1.16.4.dist-info/top_level.txt,sha256=jsf9ZzZPmHaISTVumQPsAw7vv7Yv-PdEVW70SMEelQQ,14
|
|
387
|
+
akshare-1.16.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|