akshare 1.16.3__py3-none-any.whl → 1.16.5__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/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_fund_em.py +4 -4
- akshare/stock/stock_hk_sina.py +3 -3
- akshare/stock_feature/stock_hsgt_em.py +2 -2
- {akshare-1.16.3.dist-info → akshare-1.16.5.dist-info}/METADATA +1 -1
- {akshare-1.16.3.dist-info → akshare-1.16.5.dist-info}/RECORD +13 -13
- {akshare-1.16.3.dist-info → akshare-1.16.5.dist-info}/LICENSE +0 -0
- {akshare-1.16.3.dist-info → akshare-1.16.5.dist-info}/WHEEL +0 -0
- {akshare-1.16.3.dist-info → akshare-1.16.5.dist-info}/top_level.txt +0 -0
akshare/__init__.py
CHANGED
|
@@ -3012,9 +3012,11 @@ amac_manager_cancelled_info # 中国证券投资基金业协会-信息公示-诚
|
|
|
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
3014
|
1.16.3 fix: fix stock_zh_index_spot_em interface
|
|
3015
|
+
1.16.4 fix: fix stock_hk_ggt_components_em interface
|
|
3016
|
+
1.16.5 fix: fix stock_sector_fund_flow_rank interface
|
|
3015
3017
|
"""
|
|
3016
3018
|
|
|
3017
|
-
__version__ = "1.16.
|
|
3019
|
+
__version__ = "1.16.5"
|
|
3018
3020
|
__author__ = "AKFamily"
|
|
3019
3021
|
|
|
3020
3022
|
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/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_fund_em.py
CHANGED
|
@@ -470,7 +470,7 @@ def stock_sector_fund_flow_rank(
|
|
|
470
470
|
"pn": "1",
|
|
471
471
|
"pz": "5000",
|
|
472
472
|
"po": "1",
|
|
473
|
-
"np": "
|
|
473
|
+
"np": "2",
|
|
474
474
|
"ut": "b2884a393a59ad64002292a3e90d46a5",
|
|
475
475
|
"fltt": "2",
|
|
476
476
|
"invt": "2",
|
|
@@ -483,9 +483,9 @@ def stock_sector_fund_flow_rank(
|
|
|
483
483
|
"_": int(time.time() * 1000),
|
|
484
484
|
}
|
|
485
485
|
r = requests.get(url, params=params, headers=headers)
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
temp_df = pd.DataFrame(
|
|
486
|
+
data_text = r.text
|
|
487
|
+
data_json = json.loads(data_text[data_text.find("{") : -2])
|
|
488
|
+
temp_df = pd.DataFrame(data_json["data"]["diff"]).T
|
|
489
489
|
if indicator == "今日":
|
|
490
490
|
temp_df.columns = [
|
|
491
491
|
"-",
|
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
|
"""
|
|
@@ -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=Woqe67N4mZqHH9jG6ogwDd14suMbDoijf6JktLRT1-s,187780
|
|
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,7 +165,7 @@ 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
170
|
akshare/index/index_stock_zh.py,sha256=T79qIxZbRub4yprZ5ukEllWqfj-WV2Zkx4i7KyEwGjE,17860
|
|
171
171
|
akshare/index/index_stock_zh_csindex.py,sha256=sRVoDD-fitqAMuDs0XPm1oCz2nZ2QTkvNswL1WvXpwo,4164
|
|
@@ -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,20 +231,20 @@ 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
|
|
238
238
|
akshare/stock/stock_cg_lawsuit.py,sha256=6Y92pPw0JgyrInteqHuU07G1jwmdX2wjaDtrJN8y6Hg,4129
|
|
239
239
|
akshare/stock/stock_dividend_cninfo.py,sha256=_vipLQu94qBDoPkaIWZKRFA0mFfgroUMnn5EdLcjAc4,3195
|
|
240
240
|
akshare/stock/stock_dzjy_em.py,sha256=QMo2w-_I9UnmCr1IXk_InFeW5ok_GpRE9HdWFDUdGyM,22556
|
|
241
|
-
akshare/stock/stock_fund_em.py,sha256=
|
|
241
|
+
akshare/stock/stock_fund_em.py,sha256=ZtDX_llsN4Wxm6IcoGMLV0Xoy0n6CIuDpXVps5OBQS8,48920
|
|
242
242
|
akshare/stock/stock_fund_hold.py,sha256=iFEmRFber7MF6aPi0QOJxpvYjO7I26KouUvC-xTQdCk,6056
|
|
243
243
|
akshare/stock/stock_gsrl_em.py,sha256=oy5vO681ZPTEehZgz10T8jgIQ8dNm_E7MXGr1PGoHqI,1951
|
|
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
|
|
@@ -315,7 +315,7 @@ akshare/stock_feature/stock_hist_em.py,sha256=izbhwdVCUp672hvHBSNpP4eXdFd1NDlJkU
|
|
|
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.5.dist-info/LICENSE,sha256=mmSZCPgfHiVw34LXuFArd-SUgQtBJ_QsIlh-kWlDHfs,1073
|
|
384
|
+
akshare-1.16.5.dist-info/METADATA,sha256=LmY7ro5e6jtJJyArjiea0bPwfUvVpv3guykg7lhvWgc,13678
|
|
385
|
+
akshare-1.16.5.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
386
|
+
akshare-1.16.5.dist-info/top_level.txt,sha256=jsf9ZzZPmHaISTVumQPsAw7vv7Yv-PdEVW70SMEelQQ,14
|
|
387
|
+
akshare-1.16.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|