akshare 1.16.91__py3-none-any.whl → 1.16.93__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 +3 -1
- akshare/bond/bond_convert.py +10 -9
- akshare/stock/cons.py +2 -2
- akshare/stock_feature/stock_hsgt_em.py +129 -7
- akshare/stock_feature/stock_yjyg_cninfo.py +2 -1
- akshare/stock_fundamental/stock_basic_info_xq.py +1 -1
- {akshare-1.16.91.dist-info → akshare-1.16.93.dist-info}/METADATA +1 -1
- {akshare-1.16.91.dist-info → akshare-1.16.93.dist-info}/RECORD +11 -11
- {akshare-1.16.91.dist-info → akshare-1.16.93.dist-info}/WHEEL +1 -1
- {akshare-1.16.91.dist-info → akshare-1.16.93.dist-info}/licenses/LICENSE +0 -0
- {akshare-1.16.91.dist-info → akshare-1.16.93.dist-info}/top_level.txt +0 -0
akshare/__init__.py
CHANGED
@@ -3099,9 +3099,11 @@ amac_manager_cancelled_info # 中国证券投资基金业协会-信息公示-诚
|
|
3099
3099
|
1.16.89 fix: fix stock_balance_sheet_by_yearly_em interface
|
3100
3100
|
1.16.90 fix: fix stock_hk_company_profile_em interface
|
3101
3101
|
1.16.91 fix: fix stock_sse_deal_daily interface
|
3102
|
+
1.16.92 fix: fix bond_cb_jsl interface
|
3103
|
+
1.16.93 fix: fix stock_hsgt_individual_em interface
|
3102
3104
|
"""
|
3103
3105
|
|
3104
|
-
__version__ = "1.16.
|
3106
|
+
__version__ = "1.16.93"
|
3105
3107
|
__author__ = "AKFamily"
|
3106
3108
|
|
3107
3109
|
import sys
|
akshare/bond/bond_convert.py
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# -*- coding:utf-8 -*-
|
3
3
|
"""
|
4
|
-
Date:
|
4
|
+
Date: 2025/5/16 19:00
|
5
5
|
Desc: 债券-集思录-可转债
|
6
|
-
集思录:https://
|
6
|
+
集思录:https://www.jisilu.cn/data/cbnew/#cb
|
7
7
|
"""
|
8
8
|
|
9
9
|
from io import StringIO
|
10
10
|
import pandas as pd
|
11
11
|
import requests
|
12
|
+
import time
|
12
13
|
|
13
14
|
from akshare.utils import demjson
|
14
15
|
|
@@ -30,13 +31,13 @@ def bond_cb_index_jsl() -> pd.DataFrame:
|
|
30
31
|
def bond_cb_jsl(cookie: str = None) -> pd.DataFrame:
|
31
32
|
"""
|
32
33
|
集思录可转债
|
33
|
-
https://
|
34
|
+
https://www.jisilu.cn/data/cbnew/#cb
|
34
35
|
:param cookie: 输入获取到的游览器 cookie
|
35
36
|
:type cookie: str
|
36
37
|
:return: 集思录可转债
|
37
38
|
:rtype: pandas.DataFrame
|
38
39
|
"""
|
39
|
-
url = "https://
|
40
|
+
url = "https://www.jisilu.cn/data/cbnew/cb_list_new/"
|
40
41
|
headers = {
|
41
42
|
"accept": "application/json, text/javascript, */*; q=0.01",
|
42
43
|
"accept-encoding": "gzip, deflate, br",
|
@@ -45,9 +46,9 @@ def bond_cb_jsl(cookie: str = None) -> pd.DataFrame:
|
|
45
46
|
"content-length": "220",
|
46
47
|
"content-type": "application/x-www-form-urlencoded; charset=UTF-8",
|
47
48
|
"cookie": cookie,
|
48
|
-
"origin": "https://
|
49
|
+
"origin": "https://www.jisilu.cn",
|
49
50
|
"pragma": "no-cache",
|
50
|
-
"referer": "https://
|
51
|
+
"referer": "https://www.jisilu.cn/data/cbnew/",
|
51
52
|
"sec-ch-ua": '" Not;A Brand";v="99", "Google Chrome";v="91", "Chromium";v="91"',
|
52
53
|
"sec-ch-ua-mobile": "?0",
|
53
54
|
"sec-fetch-dest": "empty",
|
@@ -58,7 +59,7 @@ def bond_cb_jsl(cookie: str = None) -> pd.DataFrame:
|
|
58
59
|
"x-requested-with": "XMLHttpRequest",
|
59
60
|
}
|
60
61
|
params = {
|
61
|
-
"___jsl": "LST___t=
|
62
|
+
"___jsl": f"LST___t={int(time.time() * 1000)}",
|
62
63
|
}
|
63
64
|
payload = {
|
64
65
|
"fprice": "",
|
@@ -141,7 +142,7 @@ def bond_cb_jsl(cookie: str = None) -> pd.DataFrame:
|
|
141
142
|
"双低",
|
142
143
|
]
|
143
144
|
]
|
144
|
-
temp_df["到期时间"] = pd.to_datetime(temp_df["到期时间"]).dt.date
|
145
|
+
temp_df["到期时间"] = pd.to_datetime(temp_df["到期时间"], errors="coerce").dt.date
|
145
146
|
temp_df["现价"] = pd.to_numeric(temp_df["现价"], errors="coerce")
|
146
147
|
temp_df["涨跌幅"] = pd.to_numeric(temp_df["涨跌幅"], errors="coerce")
|
147
148
|
temp_df["正股价"] = pd.to_numeric(temp_df["正股价"], errors="coerce")
|
@@ -296,7 +297,7 @@ def bond_cb_redeem_jsl() -> pd.DataFrame:
|
|
296
297
|
def bond_cb_adj_logs_jsl(symbol: str = "128013") -> pd.DataFrame:
|
297
298
|
"""
|
298
299
|
集思录-可转债转股价-调整记录
|
299
|
-
https://
|
300
|
+
https://www.jisilu.cn/data/cbnew/#cb
|
300
301
|
:param symbol: 可转债代码
|
301
302
|
:type symbol: str
|
302
303
|
:return: 转股价调整记录
|
akshare/stock/cons.py
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# -*- coding:utf-8 -*-
|
3
3
|
"""
|
4
|
-
Date: 2025/
|
4
|
+
Date: 2025/5/16 19:00
|
5
5
|
Desc: 股票配置文件
|
6
6
|
"""
|
7
7
|
|
8
|
-
xq_a_token = "
|
8
|
+
xq_a_token = "75116a2a5439edb58d3d99533cfbc4d72e0ee819"
|
9
9
|
|
10
10
|
# zh-sina-kcb
|
11
11
|
zh_sina_kcb_stock_url = ("http://vip.stock.finance.sina.com.cn/quotes_service/api/json_v2.php/"
|
@@ -1327,12 +1327,12 @@ def stock_hsgt_board_rank_em(
|
|
1327
1327
|
return temp_df
|
1328
1328
|
|
1329
1329
|
|
1330
|
-
def
|
1330
|
+
def __stock_hsgt_individual_zh_hk_em(symbol: str = "00700") -> pd.DataFrame:
|
1331
1331
|
"""
|
1332
1332
|
东方财富-数据中心-沪深港通-沪深港通持股-具体股票
|
1333
|
-
https://data.eastmoney.com/
|
1334
|
-
:param
|
1335
|
-
:type
|
1333
|
+
https://data.eastmoney.com/hsgt/StockHdDetail/00700.html
|
1334
|
+
:param symbol: 股票代码
|
1335
|
+
:type symbol: str
|
1336
1336
|
:return: 具体股票-沪深港通持股
|
1337
1337
|
:rtype: pandas.DataFrame
|
1338
1338
|
"""
|
@@ -1342,15 +1342,28 @@ def stock_hsgt_individual_em(stock: str = "002008") -> pd.DataFrame:
|
|
1342
1342
|
"sortTypes": "-1",
|
1343
1343
|
"pageSize": "500",
|
1344
1344
|
"pageNumber": "1",
|
1345
|
-
"reportName": "
|
1345
|
+
"reportName": "RPT_MUTUAL_STOCK_HOLDRANKS",
|
1346
1346
|
"columns": "ALL",
|
1347
1347
|
"source": "WEB",
|
1348
1348
|
"client": "WEB",
|
1349
|
-
"filter": f"""(
|
1349
|
+
"filter": f"""(SECUCODE="{symbol}.HK")(MUTUAL_TYPE="002")""",
|
1350
1350
|
}
|
1351
1351
|
r = requests.get(url, params=params)
|
1352
1352
|
data_json = r.json()
|
1353
|
+
total_page = data_json["result"]["pages"]
|
1353
1354
|
temp_df = pd.DataFrame(data_json["result"]["data"])
|
1355
|
+
for page in range(1, total_page + 1):
|
1356
|
+
params.update({"pageNumber": str(page)})
|
1357
|
+
r = requests.get(url, params=params)
|
1358
|
+
data_json = r.json()
|
1359
|
+
if page == 1:
|
1360
|
+
temp_df = pd.DataFrame(data_json["result"]["data"])
|
1361
|
+
else:
|
1362
|
+
temp_df = pd.concat(
|
1363
|
+
objs=[temp_df, pd.DataFrame(data_json["result"]["data"])],
|
1364
|
+
ignore_index=True,
|
1365
|
+
)
|
1366
|
+
|
1354
1367
|
temp_df.rename(
|
1355
1368
|
columns={
|
1356
1369
|
"SECURITY_INNER_CODE": "-",
|
@@ -1403,9 +1416,118 @@ def stock_hsgt_individual_em(stock: str = "002008") -> pd.DataFrame:
|
|
1403
1416
|
temp_df["持股市值变化-10日"] = pd.to_numeric(
|
1404
1417
|
temp_df["持股市值变化-10日"], errors="coerce"
|
1405
1418
|
)
|
1419
|
+
temp_df.sort_values("持股日期", ignore_index=True, inplace=True)
|
1420
|
+
return temp_df
|
1421
|
+
|
1422
|
+
|
1423
|
+
def __stock_hsgt_individual_zh_a_em(symbol: str = "002008") -> pd.DataFrame:
|
1424
|
+
"""
|
1425
|
+
东方财富-数据中心-沪深港通-沪深港通持股-具体股票
|
1426
|
+
https://data.eastmoney.com/hsgt/StockHdStatistics/002008.html
|
1427
|
+
:param symbol: 股票代码
|
1428
|
+
:type symbol: str
|
1429
|
+
:return: 具体股票-沪深港通持股
|
1430
|
+
:rtype: pandas.DataFrame
|
1431
|
+
"""
|
1432
|
+
url = "https://datacenter-web.eastmoney.com/api/data/v1/get"
|
1433
|
+
params = {
|
1434
|
+
"sortColumns": "TRADE_DATE",
|
1435
|
+
"sortTypes": "-1",
|
1436
|
+
"pageSize": "500",
|
1437
|
+
"pageNumber": "1",
|
1438
|
+
"reportName": "RPT_MUTUAL_HOLDSTOCKNDATE_STA",
|
1439
|
+
"columns": "ALL",
|
1440
|
+
"source": "WEB",
|
1441
|
+
"client": "WEB",
|
1442
|
+
"filter": f"""(SECURITY_CODE="{symbol}")(INTERVAL_TYPE="1")""",
|
1443
|
+
}
|
1444
|
+
r = requests.get(url, params=params)
|
1445
|
+
data_json = r.json()
|
1446
|
+
total_page = data_json["result"]["pages"]
|
1447
|
+
temp_df = pd.DataFrame(data_json["result"]["data"])
|
1448
|
+
for page in range(1, total_page + 1):
|
1449
|
+
params.update({"pageNumber": str(page)})
|
1450
|
+
r = requests.get(url, params=params)
|
1451
|
+
data_json = r.json()
|
1452
|
+
if page == 1:
|
1453
|
+
temp_df = pd.DataFrame(data_json["result"]["data"])
|
1454
|
+
else:
|
1455
|
+
temp_df = pd.concat(
|
1456
|
+
objs=[temp_df, pd.DataFrame(data_json["result"]["data"])],
|
1457
|
+
ignore_index=True,
|
1458
|
+
)
|
1459
|
+
|
1460
|
+
temp_df.rename(
|
1461
|
+
columns={
|
1462
|
+
"SECURITY_INNER_CODE": "-",
|
1463
|
+
"SECUCODE": "-",
|
1464
|
+
"TRADE_DATE": "持股日期",
|
1465
|
+
"SECURITY_CODE": "-",
|
1466
|
+
"SECURITY_NAME": "-",
|
1467
|
+
"MUTUAL_TYPE": "-",
|
1468
|
+
"CHANGE_RATE": "当日涨跌幅",
|
1469
|
+
"CLOSE_PRICE": "当日收盘价",
|
1470
|
+
"HOLD_SHARES": "持股数量",
|
1471
|
+
"HOLD_MARKET_CAP": "持股市值",
|
1472
|
+
"A_SHARES_RATIO": "-",
|
1473
|
+
"HOLD_SHARES_RATIO": "持股数量占A股百分比",
|
1474
|
+
"FREE_SHARES_RATIO": "-",
|
1475
|
+
"TOTAL_SHARES_RATIO": "-",
|
1476
|
+
"HMC_CHANGE": "今日持股市值变化",
|
1477
|
+
"ADD_SHARES_REPAIR": "今日增持股数",
|
1478
|
+
"PREDICT_AMC": "今日增持资金",
|
1479
|
+
},
|
1480
|
+
inplace=True,
|
1481
|
+
)
|
1482
|
+
temp_df = temp_df[
|
1483
|
+
[
|
1484
|
+
"持股日期",
|
1485
|
+
"当日收盘价",
|
1486
|
+
"当日涨跌幅",
|
1487
|
+
"持股数量",
|
1488
|
+
"持股市值",
|
1489
|
+
"持股数量占A股百分比",
|
1490
|
+
"今日增持股数",
|
1491
|
+
"今日增持资金",
|
1492
|
+
"今日持股市值变化",
|
1493
|
+
]
|
1494
|
+
]
|
1495
|
+
temp_df["持股日期"] = pd.to_datetime(temp_df["持股日期"], errors="coerce").dt.date
|
1496
|
+
temp_df["当日收盘价"] = pd.to_numeric(temp_df["当日收盘价"], errors="coerce")
|
1497
|
+
temp_df["当日涨跌幅"] = pd.to_numeric(temp_df["当日涨跌幅"], errors="coerce")
|
1498
|
+
temp_df["持股数量"] = pd.to_numeric(temp_df["持股数量"], errors="coerce")
|
1499
|
+
temp_df["持股市值"] = pd.to_numeric(temp_df["持股市值"], errors="coerce")
|
1500
|
+
temp_df["持股数量占A股百分比"] = pd.to_numeric(
|
1501
|
+
temp_df["持股数量占A股百分比"], errors="coerce"
|
1502
|
+
)
|
1503
|
+
temp_df["今日增持股数"] = pd.to_numeric(
|
1504
|
+
temp_df["今日增持股数"], errors="coerce"
|
1505
|
+
)
|
1506
|
+
temp_df["今日增持资金"] = pd.to_numeric(
|
1507
|
+
temp_df["今日增持资金"], errors="coerce"
|
1508
|
+
)
|
1509
|
+
temp_df["今日持股市值变化"] = pd.to_numeric(
|
1510
|
+
temp_df["今日持股市值变化"], errors="coerce"
|
1511
|
+
)
|
1512
|
+
temp_df.sort_values("持股日期", ignore_index=True, inplace=True)
|
1406
1513
|
return temp_df
|
1407
1514
|
|
1408
1515
|
|
1516
|
+
def stock_hsgt_individual_em(symbol: str = "002008") -> pd.DataFrame:
|
1517
|
+
"""
|
1518
|
+
东方财富-数据中心-沪深港通-沪深港通持股-具体股票
|
1519
|
+
https://data.eastmoney.com/hsgt/StockHdDetail/002008.html
|
1520
|
+
:param symbol: 股票代码
|
1521
|
+
:type symbol: str
|
1522
|
+
:return: 具体股票-沪深港通持股
|
1523
|
+
:rtype: pandas.DataFrame
|
1524
|
+
"""
|
1525
|
+
if len(symbol) == 6:
|
1526
|
+
return __stock_hsgt_individual_zh_a_em(symbol=symbol)
|
1527
|
+
else:
|
1528
|
+
return __stock_hsgt_individual_zh_hk_em(symbol=symbol)
|
1529
|
+
|
1530
|
+
|
1409
1531
|
def stock_hsgt_individual_detail_em(
|
1410
1532
|
symbol: str = "002008",
|
1411
1533
|
start_date: str = "20220130",
|
@@ -1591,7 +1713,7 @@ if __name__ == "__main__":
|
|
1591
1713
|
)
|
1592
1714
|
print(stock_hsgt_board_rank_em_df)
|
1593
1715
|
|
1594
|
-
stock_hsgt_individual_em_df = stock_hsgt_individual_em(
|
1716
|
+
stock_hsgt_individual_em_df = stock_hsgt_individual_em(symbol="00700")
|
1595
1717
|
print(stock_hsgt_individual_em_df)
|
1596
1718
|
|
1597
1719
|
stock_hsgt_individual_detail_em_df = stock_hsgt_individual_detail_em(
|
@@ -16,7 +16,8 @@ def stock_report_disclosure(
|
|
16
16
|
"""
|
17
17
|
巨潮资讯-首页-数据-预约披露
|
18
18
|
http://www.cninfo.com.cn/new/commonUrl?url=data/yypl
|
19
|
-
:param market: choice of {"沪深京": "szsh", "深市": "sz", "深主板": "szmb", "中小板": "szsme",
|
19
|
+
:param market: choice of {"沪深京": "szsh", "深市": "sz", "深主板": "szmb", "中小板": "szsme",
|
20
|
+
"创业板": "szcn", "沪市": "sh", "沪主板": "shmb", "科创板": "shkcp"}
|
20
21
|
:type market: str
|
21
22
|
:param period: 最近四期的财报
|
22
23
|
:type period: str
|
@@ -1,4 +1,4 @@
|
|
1
|
-
akshare/__init__.py,sha256=
|
1
|
+
akshare/__init__.py,sha256=R31UMkeA95ZRuhM3wvMQXfVyg-xKVG62AN9djKqMV8Y,193984
|
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
|
@@ -25,7 +25,7 @@ akshare/bond/bond_cb_ths.py,sha256=sxpcGr5teUR0fSGolBKl1bDUkdA94gKdXdLvr5NSC0U,3
|
|
25
25
|
akshare/bond/bond_cbond.py,sha256=_gf5PE_soDb3oCWAOWcqlCF4VP04FB4WZXDJtwe2Cco,6728
|
26
26
|
akshare/bond/bond_china.py,sha256=Gjp2x2aNFRlGfHFpQYX_Prv19V9a4INiw5O946rLLtA,6535
|
27
27
|
akshare/bond/bond_china_money.py,sha256=IInePsQJDby5w0AYd84ipiJL_nbyVAaRC7SaHLWDP_E,13729
|
28
|
-
akshare/bond/bond_convert.py,sha256=
|
28
|
+
akshare/bond/bond_convert.py,sha256=BAp5ZyTZhzDklfn2b714PKtM5EJW0H4yRfAZFzBfpH4,12691
|
29
29
|
akshare/bond/bond_em.py,sha256=E519B6pwiL1M5aPEnDTAYW1OSwr71saN6WOW0vxnYcg,5431
|
30
30
|
akshare/bond/bond_info_cm.py,sha256=VBu9UM9tUcGDRV07pndU9yttLDF_Nk3b0vU0n65qpHs,7890
|
31
31
|
akshare/bond/bond_issue_cninfo.py,sha256=tPoZhF-_sIX9ztCKB0K0-Z4Kd9b-389bP3_CdFK7Wb0,21672
|
@@ -232,7 +232,7 @@ akshare/spot/spot_hog_soozhu.py,sha256=IEt7zrDs0ptAKgMA7QRIk45jcMLcA_LGq6Y3lKLFT
|
|
232
232
|
akshare/spot/spot_price_qh.py,sha256=rRv09vR8K0U_x6x8AiLgGluxytIXkLatFNVkFbIh8eQ,3756
|
233
233
|
akshare/spot/spot_sge.py,sha256=fXy6I9GchX2rfdPDD2wSN8K-hcDdS3ABzLDLdH-9t4Y,8696
|
234
234
|
akshare/stock/__init__.py,sha256=jSa9260d6aNZajaW68chI2mpPkDSXLOgi3eXrqo4MQ8,82
|
235
|
-
akshare/stock/cons.py,sha256=
|
235
|
+
akshare/stock/cons.py,sha256=HuyilHoccuUCNaA7qYhvy4xamXWcHUA-F1NejOFj3o4,43667
|
236
236
|
akshare/stock/stock_allotment_cninfo.py,sha256=OVjVdWp2XVRNbJvVgtgVVoBmPBJgBB4RyIIgA_9QHM8,6066
|
237
237
|
akshare/stock/stock_ask_bid_em.py,sha256=bo7VNkp1PmK4Z-GPZuVn_I-IAdzeW8cs3W_75KodxCg,3368
|
238
238
|
akshare/stock/stock_board_concept_em.py,sha256=7dIwfF73XrRe1XOj9Q4pvb-X_KXR7CxPQqPziD5nqEU,17725
|
@@ -326,7 +326,7 @@ akshare/stock_feature/stock_hist_em.py,sha256=4WN44TUCdjjxVyhMbvQG3Ttm2ShG3_kh5X
|
|
326
326
|
akshare/stock_feature/stock_hist_tx.py,sha256=T3eegWWohahHzsFOx58qJFLq9QQRUiDXEaiJdQLkex0,3346
|
327
327
|
akshare/stock_feature/stock_hk_valuation_baidu.py,sha256=_sErx4UhNsSXJgXyPfrL0aPxkW53Mg1zH9gEKoziaCA,1968
|
328
328
|
akshare/stock_feature/stock_hot_xq.py,sha256=P4-fLjrh-9CdVe5BQ2O5hmeSesHQAu9E49aMKmhMedM,9023
|
329
|
-
akshare/stock_feature/stock_hsgt_em.py,sha256=
|
329
|
+
akshare/stock_feature/stock_hsgt_em.py,sha256=6X4izxAbApHIO1YK2nYaZCE1hdn18tTbGjJta4Q-7a0,62222
|
330
330
|
akshare/stock_feature/stock_hsgt_exchange_rate.py,sha256=dSNtqVUyySIqfBu9U5TiDZOETwb2fcO6Y16vLc67c0w,7152
|
331
331
|
akshare/stock_feature/stock_hsgt_min_em.py,sha256=DBNrZwbbR_XoGvGHvi-vexWsBq1Ddio8qe0L9ck0iqY,2841
|
332
332
|
akshare/stock_feature/stock_info.py,sha256=JSmJWrSzzq4sP4CgOU0mYGVcbXeWlRDQxNYtbSjJmiM,9043
|
@@ -352,7 +352,7 @@ akshare/stock_feature/stock_three_report_em.py,sha256=UoBfh2A3GNFF9540-Qeiy4X6-v
|
|
352
352
|
akshare/stock_feature/stock_ttm_lyr.py,sha256=RwKMgI_A3rDRIITd_idmvlFSkn4DTUPNVfPjISSTZYw,1110
|
353
353
|
akshare/stock_feature/stock_value_em.py,sha256=RA842dkeChSEoS3yN9fiGxS3eDzYjeUdrpXbnteyzZY,2576
|
354
354
|
akshare/stock_feature/stock_yjbb_em.py,sha256=hQBr1aj808AdA88Y_dpuR7G1mb487hcRamD31UZus-s,4689
|
355
|
-
akshare/stock_feature/stock_yjyg_cninfo.py,sha256=
|
355
|
+
akshare/stock_feature/stock_yjyg_cninfo.py,sha256=KM0O5rHBkVAxDl4dmA_WAgqBWJMuaMLoQ2PyJ-VPBi4,2889
|
356
356
|
akshare/stock_feature/stock_yjyg_em.py,sha256=lM0byeglQQ2vLwNJnjd6EegnZ7Fy-jFZmDwRXLM6OnA,12184
|
357
357
|
akshare/stock_feature/stock_yzxdr_em.py,sha256=-16KDPtBDXkbHRs7aNAyPy35XurDj7LIcbWAtmgvP64,3219
|
358
358
|
akshare/stock_feature/stock_zdhtmx_em.py,sha256=AwJajapk-Y59usiw6p0fBYVkqTDAXBQsxFEmo4sfkE4,4326
|
@@ -362,7 +362,7 @@ akshare/stock_feature/stock_zh_vote_baidu.py,sha256=kRnjPskZpFySRAoTb_W2KCZwsUdo
|
|
362
362
|
akshare/stock_feature/stock_ztb_em.py,sha256=cKIr6SWXPkE7rdsGHJtICqP19mR8C01n4qLgZCXZAek,17961
|
363
363
|
akshare/stock_feature/ths.js,sha256=AWPkHf3L2Il1UUL0F5qDqNn1dfU0OlZBNUbMf8AmI3Y,39664
|
364
364
|
akshare/stock_fundamental/__init__.py,sha256=umtdE151dFbLfXlzWAqHHVi8yj4lNPlq1wRX1Q5CMNM,81
|
365
|
-
akshare/stock_fundamental/stock_basic_info_xq.py,sha256=
|
365
|
+
akshare/stock_fundamental/stock_basic_info_xq.py,sha256=ghl-cx1RmaGFnKpzVmmNsPoM2rTm4QvWTzk62fJ_L-I,3644
|
366
366
|
akshare/stock_fundamental/stock_finance_hk_em.py,sha256=cCiaWX6ZyKe4W2H9qe-ttpMeVMWp6tHdvnjhRuYQhl8,7017
|
367
367
|
akshare/stock_fundamental/stock_finance_sina.py,sha256=nIultV1w4CVAVAXe_u7yCV7WGusObs8SgbjxrH-XvgU,30718
|
368
368
|
akshare/stock_fundamental/stock_finance_ths.py,sha256=nS9bt_hzklzh7pBTCH1PjOa69OUcNZ41Z_zSHiz9Y1U,11527
|
@@ -391,10 +391,10 @@ akshare/utils/func.py,sha256=4cwmXFztU86yJNONJ40KJLvsIEQHBbct4iMm3zT2v30,2315
|
|
391
391
|
akshare/utils/multi_decrypt.py,sha256=aWoL2iEPeuXHJg8-n7OtMKixLnIhfzepACgxfrfmQB4,1657
|
392
392
|
akshare/utils/token_process.py,sha256=nGtgnZGRprXJkhLXH8mcUH4TgIFwzsTOb0EaEPa0Euo,667
|
393
393
|
akshare/utils/tqdm.py,sha256=MuPNwcswkOGjwWQOMWXi9ZvQ_RmW4obCWRj2i7HM7FE,847
|
394
|
-
akshare-1.16.
|
394
|
+
akshare-1.16.93.dist-info/licenses/LICENSE,sha256=mmSZCPgfHiVw34LXuFArd-SUgQtBJ_QsIlh-kWlDHfs,1073
|
395
395
|
tests/__init__.py,sha256=gNzhlO0UPjFq6Ieb38kaVIODXv4cTDByrdohAZnDYt4,82
|
396
396
|
tests/test_func.py,sha256=j1MGYbZI2if2j_LY1S4FLsf4qfq4NwVqD5wmRlv5Log,832
|
397
|
-
akshare-1.16.
|
398
|
-
akshare-1.16.
|
399
|
-
akshare-1.16.
|
400
|
-
akshare-1.16.
|
397
|
+
akshare-1.16.93.dist-info/METADATA,sha256=mQir0BPJIM_jAIrgWGhGwI4O-bFXBnm8i9m_WjzkT_M,11902
|
398
|
+
akshare-1.16.93.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
399
|
+
akshare-1.16.93.dist-info/top_level.txt,sha256=jsf9ZzZPmHaISTVumQPsAw7vv7Yv-PdEVW70SMEelQQ,14
|
400
|
+
akshare-1.16.93.dist-info/RECORD,,
|
File without changes
|
File without changes
|