akshare 1.16.23__py3-none-any.whl → 1.16.25__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 CHANGED
@@ -3032,9 +3032,11 @@ amac_manager_cancelled_info # 中国证券投资基金业协会-信息公示-诚
3032
3032
  1.16.21 fix: fix stock_hk_index_daily_em interface
3033
3033
  1.16.22 fix: fix fund_money_fund_info_em interface
3034
3034
  1.16.23 fix: fix stock_board_industry_cons_em interface
3035
+ 1.16.24 fix: fix stock_financial_hk_report_em interface
3036
+ 1.16.25 fix: fix stock_financial_abstract_ths interface
3035
3037
  """
3036
3038
 
3037
- __version__ = "1.16.23"
3039
+ __version__ = "1.16.25"
3038
3040
  __author__ = "AKFamily"
3039
3041
 
3040
3042
  import sys
@@ -3056,6 +3058,14 @@ if sys.version_info < (3, 9):
3056
3058
 
3057
3059
  del sys
3058
3060
 
3061
+ """
3062
+ 东方财富-美股-财务分析-三大报表
3063
+ """
3064
+ from akshare.stock_fundamental.stock_finance_us_em import (
3065
+ stock_financial_us_report_em,
3066
+ stock_financial_us_analysis_indicator_em,
3067
+ )
3068
+
3059
3069
  """
3060
3070
  期货行情-内盘-历史行情数据-东财
3061
3071
  """
@@ -4675,7 +4685,7 @@ from akshare.stock.stock_industry import stock_sector_spot, stock_sector_detail
4675
4685
  """
4676
4686
  stock-fundamental
4677
4687
  """
4678
- from akshare.stock_fundamental.stock_finance import (
4688
+ from akshare.stock_fundamental.stock_finance_sina import (
4679
4689
  stock_financial_abstract,
4680
4690
  stock_financial_report_sina,
4681
4691
  stock_financial_analysis_indicator,
@@ -4692,7 +4702,7 @@ from akshare.stock_fundamental.stock_finance import (
4692
4702
  """
4693
4703
  stock-HK-fundamental
4694
4704
  """
4695
- from akshare.stock_fundamental.stock_finance_hk import (
4705
+ from akshare.stock_fundamental.stock_finance_hk_em import (
4696
4706
  stock_financial_hk_analysis_indicator_em,
4697
4707
  stock_financial_hk_report_em,
4698
4708
  )
@@ -1,10 +1,11 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding:utf-8 -*-
3
3
  """
4
- Date: 2023/7/31 12:00
4
+ Date: 2025/3/4 17:00
5
5
  Desc: 港股-基本面数据
6
6
  https://emweb.securities.eastmoney.com/PC_HKF10/FinancialAnalysis/index?type=web&code=00700
7
7
  """
8
+
8
9
  import pandas as pd
9
10
  import requests
10
11
 
@@ -20,32 +21,34 @@ def stock_financial_hk_report_em(
20
21
  :param symbol: choice of {"资产负债表", "利润表", "现金流量表"}
21
22
  :type symbol: str
22
23
  :param indicator: choice of {"年度", "报告期"}
23
- :type indicator:
24
+ :type indicator: str
24
25
  :return: 东方财富-港股-财务报表-三大报表
25
26
  :rtype: pandas.DataFrame
26
27
  """
27
28
  url = "https://datacenter.eastmoney.com/securities/api/data/v1/get"
28
29
  params = {
29
- 'reportName': 'RPT_CUSTOM_HKSK_APPFN_CASHFLOW_SUMMARY',
30
- 'columns': 'SECUCODE,SECURITY_CODE,SECURITY_NAME_ABBR,START_DATE,REPORT_DATE,FISCAL_YEAR,CURRENCY,ACCOUNT_STANDARD,REPORT_TYPE',
31
- 'quoteColumns': '',
32
- 'filter': f'(SECUCODE="{stock}.HK")',
33
- 'source': 'F10',
34
- 'client': 'PC',
35
- 'v': '02092616586970355',
30
+ "reportName": "RPT_CUSTOM_HKSK_APPFN_CASHFLOW_SUMMARY",
31
+ "columns": "SECUCODE,SECURITY_CODE,SECURITY_NAME_ABBR,START_DATE,REPORT_DATE,FISCAL_YEAR,"
32
+ "CURRENCY,ACCOUNT_STANDARD,REPORT_TYPE",
33
+ "quoteColumns": "",
34
+ "filter": f'(SECUCODE="{stock}.HK")',
35
+ "source": "F10",
36
+ "client": "PC",
37
+ "v": "02092616586970355",
36
38
  }
37
39
  r = requests.get(url, params=params)
38
40
  data_json = r.json()
39
- temp_df = pd.DataFrame(data_json['result']['data'][0]['REPORT_LIST'])
41
+ temp_df = pd.DataFrame(data_json["result"]["data"][0]["REPORT_LIST"])
40
42
  if indicator == "年度":
41
- temp_df = temp_df[temp_df['REPORT_TYPE'] == "年报"]
43
+ temp_df = temp_df[temp_df["REPORT_TYPE"] == "年报"]
42
44
  else:
43
45
  temp_df = temp_df
44
- year_list = [item.split(" ")[0] for item in temp_df['REPORT_DATE']]
46
+ year_list = [item.split(" ")[0] for item in temp_df["REPORT_DATE"]]
45
47
  if symbol == "资产负债表":
46
48
  params = {
47
49
  "reportName": "RPT_HKF10_FN_BALANCE_PC",
48
- "columns": "SECUCODE,SECURITY_CODE,SECURITY_NAME_ABBR,ORG_CODE,REPORT_DATE,DATE_TYPE_CODE,FISCAL_YEAR,STD_ITEM_CODE,STD_ITEM_NAME,AMOUNT,STD_REPORT_DATE",
50
+ "columns": "SECUCODE,SECURITY_CODE,SECURITY_NAME_ABBR,ORG_CODE,REPORT_DATE,DATE_TYPE_CODE,"
51
+ "FISCAL_YEAR,STD_ITEM_CODE,STD_ITEM_NAME,AMOUNT,STD_REPORT_DATE",
49
52
  "quoteColumns": "",
50
53
  "filter": f"""(SECUCODE="{stock}.HK")(REPORT_DATE in ({"'" + "','".join(year_list) + "'"}))""",
51
54
  "pageNumber": "1",
@@ -63,7 +66,8 @@ def stock_financial_hk_report_em(
63
66
  elif symbol == "利润表":
64
67
  params = {
65
68
  "reportName": "RPT_HKF10_FN_INCOME_PC",
66
- "columns": "SECUCODE,SECURITY_CODE,SECURITY_NAME_ABBR,ORG_CODE,REPORT_DATE,DATE_TYPE_CODE,FISCAL_YEAR,START_DATE,STD_ITEM_CODE,STD_ITEM_NAME,AMOUNT",
69
+ "columns": "SECUCODE,SECURITY_CODE,SECURITY_NAME_ABBR,ORG_CODE,REPORT_DATE,DATE_TYPE_CODE,"
70
+ "FISCAL_YEAR,START_DATE,STD_ITEM_CODE,STD_ITEM_NAME,AMOUNT",
67
71
  "quoteColumns": "",
68
72
  "filter": f"""(SECUCODE="{stock}.HK")(REPORT_DATE in ({"'" + "','".join(year_list) + "'"}))""",
69
73
  "pageNumber": "1",
@@ -81,7 +85,8 @@ def stock_financial_hk_report_em(
81
85
  elif symbol == "现金流量表":
82
86
  params = {
83
87
  "reportName": "RPT_HKF10_FN_CASHFLOW_PC",
84
- "columns": "SECUCODE,SECURITY_CODE,SECURITY_NAME_ABBR,ORG_CODE,REPORT_DATE,DATE_TYPE_CODE,FISCAL_YEAR,START_DATE,STD_ITEM_CODE,STD_ITEM_NAME,AMOUNT",
88
+ "columns": "SECUCODE,SECURITY_CODE,SECURITY_NAME_ABBR,ORG_CODE,REPORT_DATE,DATE_TYPE_CODE,"
89
+ "FISCAL_YEAR,START_DATE,STD_ITEM_CODE,STD_ITEM_NAME,AMOUNT",
85
90
  "quoteColumns": "",
86
91
  "filter": f"""(SECUCODE="{stock}.HK")(REPORT_DATE in ({"'" + "','".join(year_list) + "'"}))""",
87
92
  "pageNumber": "1",
@@ -96,6 +101,8 @@ def stock_financial_hk_report_em(
96
101
  data_json = r.json()
97
102
  temp_df = pd.DataFrame(data_json["result"]["data"])
98
103
  return temp_df
104
+ else:
105
+ return pd.DataFrame()
99
106
 
100
107
 
101
108
  def stock_financial_hk_analysis_indicator_em(
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding:utf-8 -*-
3
3
  """
4
- Date: 2024/11/2 15:20
4
+ Date: 2025/3/4 20:00
5
5
  Desc: 同花顺-财务指标-主要指标
6
6
  https://basic.10jqka.com.cn/new/000063/finance.html
7
7
  """
@@ -51,6 +51,7 @@ def stock_financial_abstract_ths(
51
51
  temp_df = temp_df.T
52
52
  temp_df.reset_index(inplace=True)
53
53
  temp_df.rename(columns={"index": "报告期"}, inplace=True)
54
+ temp_df.sort_values(by="报告期", ignore_index=True, inplace=True)
54
55
  return temp_df
55
56
 
56
57
 
@@ -0,0 +1,227 @@
1
+ #!/usr/bin/env python
2
+ # -*- coding:utf-8 -*-
3
+ """
4
+ Date: 2025/3/4 17:00
5
+ Desc: 美股-基本面数据
6
+ https://emweb.eastmoney.com/PC_USF10/pages/index.html?code=TSLA&type=web&color=w#/cwfx
7
+ """
8
+
9
+ import pandas as pd
10
+ import requests
11
+
12
+ from akshare.utils.cons import headers
13
+
14
+
15
+ def __stock_financial_us_report_em(
16
+ stock: str = "TSLA", symbol: str = "综合损益表", indicator: str = "年报"
17
+ ) -> str:
18
+ """
19
+ 东方财富-美股-财务分析-三大报表
20
+ https://emweb.securities.eastmoney.com/PC_HKF10/FinancialAnalysis/index?type=web&code=00700
21
+ :param stock: 股票代码
22
+ :type stock: str
23
+ :param symbol: choice of {"资产负债表", "综合损益表", "现金流量表"}
24
+ :type symbol: str
25
+ :param indicator: choice of {"年报", "单季报", "累计季报"}
26
+ :type indicator: str
27
+ :return: 东方财富-美股-财务分析-三大报表
28
+ :rtype: str
29
+ """
30
+ url = "https://datacenter.eastmoney.com/securities/api/data/v1/get"
31
+ if symbol == "资产负债表":
32
+ report_name = "RPT_USF10_FN_BALANCE"
33
+ elif symbol == "综合损益表":
34
+ report_name = "RPT_USF10_FN_INCOME"
35
+ elif symbol == "现金流量表":
36
+ report_name = "RPT_USSK_FN_CASHFLOW"
37
+ else:
38
+ raise ValueError("请输入正确的 symbol 参数")
39
+ params = {
40
+ "reportName": report_name,
41
+ "columns": "SECUCODE,SECURITY_CODE,SECURITY_NAME_ABBR,REPORT,REPORT_DATE,FISCAL_YEAR,CURRENCY,"
42
+ "ACCOUNT_STANDARD,REPORT_TYPE,DATE_TYPE_CODE",
43
+ "quoteColumns": "",
44
+ "filter": f'(SECUCODE="{stock}.O")',
45
+ "pageNumber": "",
46
+ "pageSize": "",
47
+ "sortTypes": "-1",
48
+ "sortColumns": "REPORT_DATE",
49
+ "source": "SECURITIES",
50
+ "client": "PC",
51
+ "v": "09583551779242467",
52
+ }
53
+ r = requests.get(url, params=params, headers=headers)
54
+ data_json = r.json()
55
+ temp_df = pd.DataFrame(data_json["result"]["data"])
56
+ temp_tuple = tuple(set(temp_df["REPORT"].tolist()))
57
+ if indicator == "年报":
58
+ tuple_data = tuple(item.strip() for item in temp_tuple if "FY" in item)
59
+ elif indicator == "单季报":
60
+ tuple_data = tuple(item.strip() for item in temp_tuple if "Q1" in item)
61
+ elif indicator == "累计季报":
62
+ tuple_data = tuple(
63
+ item.strip() for item in temp_tuple if "Q6" in item or "Q9" in item
64
+ )
65
+ else:
66
+ raise ValueError("请输入正确的 indicator 参数")
67
+ sorted_tuple = tuple(
68
+ sorted(tuple_data, key=lambda x: x.split("/")[0], reverse=True)
69
+ )
70
+ double_quotes_str = str(sorted_tuple).replace("'", '"')
71
+ double_quotes_str = double_quotes_str.replace(" ", "")
72
+ return double_quotes_str
73
+
74
+
75
+ def stock_financial_us_report_em(
76
+ stock: str = "TSLA", symbol: str = "资产负债表", indicator: str = "年报"
77
+ ) -> pd.DataFrame:
78
+ """
79
+ 东方财富-美股-财务分析-三大报表
80
+ https://emweb.securities.eastmoney.com/PC_HKF10/FinancialAnalysis/index?type=web&code=00700
81
+ :param stock: 股票代码
82
+ :type stock: str
83
+ :param symbol: choice of {"资产负债表", "综合损益表", "现金流量表"}
84
+ :type symbol: str
85
+ :param indicator: choice of {"年报", "单季报", "累计季报"}
86
+ :type indicator: str
87
+ :return: 东方财富-美股-财务分析-三大报表
88
+ :rtype: pandas.DataFrame
89
+ """
90
+ url = "https://datacenter.eastmoney.com/securities/api/data/v1/get"
91
+ date_str = __stock_financial_us_report_em(
92
+ stock=stock, symbol=symbol, indicator=indicator
93
+ )
94
+ if symbol == "资产负债表":
95
+ report_name = "RPT_USF10_FN_BALANCE"
96
+ elif symbol == "综合损益表":
97
+ report_name = "RPT_USF10_FN_INCOME"
98
+ elif symbol == "现金流量表":
99
+ report_name = "RPT_USSK_FN_CASHFLOW"
100
+ else:
101
+ raise ValueError("请输入正确的 symbol 参数")
102
+ params = {
103
+ "reportName": report_name,
104
+ "columns": "SECUCODE,SECURITY_CODE,SECURITY_NAME_ABBR,REPORT_DATE,REPORT_TYPE,REPORT,"
105
+ "STD_ITEM_CODE,AMOUNT,ITEM_NAME",
106
+ "quoteColumns": "",
107
+ "filter": f'(SECUCODE="{stock}.O")(REPORT in ' + date_str + ")",
108
+ "pageNumber": "",
109
+ "pageSize": "",
110
+ "sortTypes": "1,-1",
111
+ "sortColumns": "STD_ITEM_CODE,REPORT_DATE",
112
+ "source": "SECURITIES",
113
+ "client": "PC",
114
+ "v": "09583551779242467",
115
+ }
116
+ r = requests.get(url, params=params, headers=headers)
117
+ data_json = r.json()
118
+ temp_df = pd.DataFrame(data_json["result"]["data"])
119
+ return temp_df
120
+
121
+
122
+ def stock_financial_us_analysis_indicator_em(
123
+ symbol: str = "TSLA", indicator: str = "年报"
124
+ ) -> pd.DataFrame:
125
+ """
126
+ 东方财富-美股-财务分析-主要指标
127
+ https://emweb.eastmoney.com/PC_USF10/pages/index.html?code=TSLA&type=web&color=w#/cwfx/zyzb
128
+ :param symbol: 股票代码
129
+ :type symbol: str
130
+ :param indicator: choice of {"年报", "单季报", "累计季报"}
131
+ :type indicator: str
132
+ :return: 东方财富-美股-财务分析-主要指标
133
+ :rtype: pandas.DataFrame
134
+ """
135
+ url = "https://datacenter.eastmoney.com/securities/api/data/v1/get"
136
+ params = {
137
+ "reportName": "RPT_USF10_FN_GMAININDICATOR",
138
+ "columns": "USF10_FN_GMAININDICATOR",
139
+ "quoteColumns": "",
140
+ "pageNumber": "",
141
+ "pageSize": "",
142
+ "sortTypes": "-1",
143
+ "sortColumns": "STD_REPORT_DATE",
144
+ "source": "F10",
145
+ "client": "PC",
146
+ "v": "01975982096513973",
147
+ }
148
+ if indicator == "年报":
149
+ params.update({"filter": f"""(SECUCODE="{symbol}.O")(DATE_TYPE_CODE="001")"""})
150
+ elif indicator == "单季报":
151
+ params.update(
152
+ {
153
+ "filter": f"""(SECUCODE="{symbol}.O")(DATE_TYPE_CODE in ("003","006","007","008"))"""
154
+ }
155
+ )
156
+ elif indicator == "累计季报":
157
+ params.update(
158
+ {"filter": f"""(SECUCODE="{symbol}.O")(DATE_TYPE_CODE in ("002","004"))"""}
159
+ )
160
+ else:
161
+ raise ValueError("请输入正确的 indicator 参数")
162
+ r = requests.get(url, params=params)
163
+ data_json = r.json()
164
+ temp_df = pd.DataFrame(data_json["result"]["data"])
165
+ return temp_df
166
+
167
+
168
+ if __name__ == "__main__":
169
+ stock_financial_us_analysis_indicator_em_df = (
170
+ stock_financial_us_analysis_indicator_em(symbol="TSLA", indicator="年报")
171
+ )
172
+ print(stock_financial_us_analysis_indicator_em_df)
173
+
174
+ stock_financial_us_analysis_indicator_em_df = (
175
+ stock_financial_us_analysis_indicator_em(symbol="TSLA", indicator="单季报")
176
+ )
177
+ print(stock_financial_us_analysis_indicator_em_df)
178
+
179
+ stock_financial_us_analysis_indicator_em_df = (
180
+ stock_financial_us_analysis_indicator_em(symbol="TSLA", indicator="累计季报")
181
+ )
182
+ print(stock_financial_us_analysis_indicator_em_df)
183
+
184
+ stock_financial_us_report_em_df = stock_financial_us_report_em(
185
+ stock="TSLA", symbol="资产负债表", indicator="年报"
186
+ )
187
+ print(stock_financial_us_report_em_df)
188
+
189
+ stock_financial_us_report_em_df = stock_financial_us_report_em(
190
+ stock="TSLA", symbol="资产负债表", indicator="单季报"
191
+ )
192
+ print(stock_financial_us_report_em_df)
193
+
194
+ stock_financial_us_report_em_df = stock_financial_us_report_em(
195
+ stock="TSLA", symbol="资产负债表", indicator="累计季报"
196
+ )
197
+ print(stock_financial_us_report_em_df)
198
+
199
+ stock_financial_us_report_em_df = stock_financial_us_report_em(
200
+ stock="TSLA", symbol="综合损益表", indicator="年报"
201
+ )
202
+ print(stock_financial_us_report_em_df)
203
+
204
+ stock_financial_us_report_em_df = stock_financial_us_report_em(
205
+ stock="TSLA", symbol="综合损益表", indicator="单季报"
206
+ )
207
+ print(stock_financial_us_report_em_df)
208
+
209
+ stock_financial_us_report_em_df = stock_financial_us_report_em(
210
+ stock="TSLA", symbol="综合损益表", indicator="累计季报"
211
+ )
212
+ print(stock_financial_us_report_em_df)
213
+
214
+ stock_financial_us_report_em_df = stock_financial_us_report_em(
215
+ stock="TSLA", symbol="现金流量表", indicator="年报"
216
+ )
217
+ print(stock_financial_us_report_em_df)
218
+
219
+ stock_financial_us_report_em_df = stock_financial_us_report_em(
220
+ stock="TSLA", symbol="现金流量表", indicator="单季报"
221
+ )
222
+ print(stock_financial_us_report_em_df)
223
+
224
+ stock_financial_us_report_em_df = stock_financial_us_report_em(
225
+ stock="TSLA", symbol="现金流量表", indicator="累计季报"
226
+ )
227
+ print(stock_financial_us_report_em_df)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: akshare
3
- Version: 1.16.23
3
+ Version: 1.16.25
4
4
  Summary: AKShare is an elegant and simple financial data interface library for Python, built for human beings!
5
5
  Home-page: https://github.com/akfamily/akshare
6
6
  Author: AKFamily
@@ -1,4 +1,4 @@
1
- akshare/__init__.py,sha256=fIjaGSi9hSujgHZjCh2_iXjE-AlHbvlHvsVlFk5O3F4,188962
1
+ akshare/__init__.py,sha256=ZCSRxyBcXPvo6WGkeK1N314r9rg3I1k4Bzqvw7Riixk,189279
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
@@ -353,9 +353,10 @@ akshare/stock_feature/stock_zh_vote_baidu.py,sha256=SsSNnCq7PDFMzWFcPFcC_MSc9rua
353
353
  akshare/stock_feature/stock_ztb_em.py,sha256=hMi0NSlBs-qEid3oXKOAempZSItNApPDQKvcsdtF8j8,18141
354
354
  akshare/stock_feature/ths.js,sha256=AWPkHf3L2Il1UUL0F5qDqNn1dfU0OlZBNUbMf8AmI3Y,39664
355
355
  akshare/stock_fundamental/__init__.py,sha256=jiXoO9OXiMxB0wHaPQkuxNckYuoFKtzuhZL1ytnE2nQ,82
356
- akshare/stock_fundamental/stock_finance.py,sha256=432EjGHWFtG0L32PNSC_HWpVLDntabNt9koyUtNG77E,30718
357
- akshare/stock_fundamental/stock_finance_hk.py,sha256=Tn_vhGqxdnNDaY6Rd_M6rDvYOYpWMKGGiHudcJkShq8,6917
358
- akshare/stock_fundamental/stock_finance_ths.py,sha256=4G2sTqZHJbhVBtBAQaWoUx41xekCHdw_fKHgPB07avg,11455
356
+ akshare/stock_fundamental/stock_finance_hk_em.py,sha256=cCiaWX6ZyKe4W2H9qe-ttpMeVMWp6tHdvnjhRuYQhl8,7017
357
+ akshare/stock_fundamental/stock_finance_sina.py,sha256=432EjGHWFtG0L32PNSC_HWpVLDntabNt9koyUtNG77E,30718
358
+ akshare/stock_fundamental/stock_finance_ths.py,sha256=nS9bt_hzklzh7pBTCH1PjOa69OUcNZ41Z_zSHiz9Y1U,11527
359
+ akshare/stock_fundamental/stock_finance_us_em.py,sha256=iaPtbCyG7ErjkiHHxxkL77G14jKKZcZPrWEN02SilZo,8451
359
360
  akshare/stock_fundamental/stock_hold.py,sha256=h8V5v_0YOi3FJPc1w95WBaO0v3n87lcufcUlu-i6XXk,5394
360
361
  akshare/stock_fundamental/stock_ipo_declare.py,sha256=18j2542TT2nCJ1HWBcT6-HupRbXvesA30qqejknn-kM,1809
361
362
  akshare/stock_fundamental/stock_kcb_detail_sse.py,sha256=MBanq3sDvb0OTbUl_gg7avDUQg_3Ugzqr43cB43fp60,940
@@ -381,8 +382,8 @@ akshare/utils/token_process.py,sha256=K4rGXjh_tgugbRcyOK2h2x0jP3PT65IIK7nxhUKhOe
381
382
  akshare/utils/tqdm.py,sha256=MuPNwcswkOGjwWQOMWXi9ZvQ_RmW4obCWRj2i7HM7FE,847
382
383
  tests/__init__.py,sha256=gNzhlO0UPjFq6Ieb38kaVIODXv4cTDByrdohAZnDYt4,82
383
384
  tests/test_func.py,sha256=j1MGYbZI2if2j_LY1S4FLsf4qfq4NwVqD5wmRlv5Log,832
384
- akshare-1.16.23.dist-info/LICENSE,sha256=mmSZCPgfHiVw34LXuFArd-SUgQtBJ_QsIlh-kWlDHfs,1073
385
- akshare-1.16.23.dist-info/METADATA,sha256=o1ZoRRt8LbawY3-aB0W1-WP_PcQ8mrZC0SXvrAOngpg,13847
386
- akshare-1.16.23.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
387
- akshare-1.16.23.dist-info/top_level.txt,sha256=jsf9ZzZPmHaISTVumQPsAw7vv7Yv-PdEVW70SMEelQQ,14
388
- akshare-1.16.23.dist-info/RECORD,,
385
+ akshare-1.16.25.dist-info/LICENSE,sha256=mmSZCPgfHiVw34LXuFArd-SUgQtBJ_QsIlh-kWlDHfs,1073
386
+ akshare-1.16.25.dist-info/METADATA,sha256=QFztm-EmNmrebatno-qfx60tSMJAcXsv37Q9r5XU8Zw,13847
387
+ akshare-1.16.25.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
388
+ akshare-1.16.25.dist-info/top_level.txt,sha256=jsf9ZzZPmHaISTVumQPsAw7vv7Yv-PdEVW70SMEelQQ,14
389
+ akshare-1.16.25.dist-info/RECORD,,