akshare-one 0.3.6__py3-none-any.whl → 0.3.8__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.
Files changed (39) hide show
  1. akshare_one/__init__.py +214 -214
  2. akshare_one/eastmoney/client.py +80 -80
  3. akshare_one/eastmoney/utils.py +102 -102
  4. akshare_one/indicators.py +395 -395
  5. akshare_one/modules/cache.py +27 -27
  6. akshare_one/modules/financial/base.py +27 -27
  7. akshare_one/modules/financial/eastmoney_direct.py +183 -183
  8. akshare_one/modules/financial/factory.py +46 -46
  9. akshare_one/modules/financial/sina.py +292 -292
  10. akshare_one/modules/historical/base.py +47 -47
  11. akshare_one/modules/historical/eastmoney.py +236 -236
  12. akshare_one/modules/historical/eastmoney_direct.py +78 -78
  13. akshare_one/modules/historical/factory.py +48 -48
  14. akshare_one/modules/historical/sina.py +250 -250
  15. akshare_one/modules/indicators/base.py +158 -158
  16. akshare_one/modules/indicators/factory.py +33 -33
  17. akshare_one/modules/indicators/simple.py +384 -230
  18. akshare_one/modules/indicators/talib.py +263 -263
  19. akshare_one/modules/info/base.py +25 -25
  20. akshare_one/modules/info/eastmoney.py +51 -51
  21. akshare_one/modules/info/factory.py +44 -44
  22. akshare_one/modules/insider/base.py +28 -28
  23. akshare_one/modules/insider/factory.py +44 -44
  24. akshare_one/modules/insider/xueqiu.py +110 -110
  25. akshare_one/modules/news/base.py +22 -22
  26. akshare_one/modules/news/eastmoney.py +43 -43
  27. akshare_one/modules/news/factory.py +44 -44
  28. akshare_one/modules/realtime/base.py +27 -27
  29. akshare_one/modules/realtime/eastmoney.py +53 -53
  30. akshare_one/modules/realtime/eastmoney_direct.py +36 -36
  31. akshare_one/modules/realtime/factory.py +48 -48
  32. akshare_one/modules/realtime/xueqiu.py +57 -57
  33. akshare_one/modules/utils.py +10 -10
  34. {akshare_one-0.3.6.dist-info → akshare_one-0.3.8.dist-info}/METADATA +74 -74
  35. akshare_one-0.3.8.dist-info/RECORD +39 -0
  36. {akshare_one-0.3.6.dist-info → akshare_one-0.3.8.dist-info}/licenses/LICENSE +21 -21
  37. akshare_one-0.3.6.dist-info/RECORD +0 -39
  38. {akshare_one-0.3.6.dist-info → akshare_one-0.3.8.dist-info}/WHEEL +0 -0
  39. {akshare_one-0.3.6.dist-info → akshare_one-0.3.8.dist-info}/top_level.txt +0 -0
@@ -1,74 +1,74 @@
1
- Metadata-Version: 2.4
2
- Name: akshare-one
3
- Version: 0.3.6
4
- Summary: Standardized interface for Chinese financial market data, built on AKShare with unified data formats and simplified APIs
5
- License-Expression: MIT
6
- Project-URL: Homepage, https://github.com/zwldarren/akshare-one
7
- Project-URL: Repository, https://github.com/zwldarren/akshare-one.git
8
- Keywords: akshare,financial-data,stock-data,quant
9
- Requires-Python: >=3.10
10
- Description-Content-Type: text/markdown
11
- License-File: LICENSE
12
- Requires-Dist: akshare>=1.17.21
13
- Requires-Dist: cachetools>=5.5.2
14
- Provides-Extra: talib
15
- Requires-Dist: ta-lib>=0.6.4; extra == "talib"
16
- Dynamic: license-file
17
-
18
- <div align="center">
19
- <h1>AKShare One</h1>
20
- <div>
21
- <a href="README_zh.md">中文</a> | <strong>English</strong>
22
- </div>
23
- </div>
24
-
25
- **AKShare One** is a data interface for obtaining Chinese A-shares, based on [AKShare](https://github.com/akfamily/akshare). It aims to simplify AKShare's usage and unify input/output formats from different data sources, making it easier to pass data to LLM.
26
-
27
- ## ✨ Features
28
-
29
- - 📊 Unified stock code formats across data sources
30
- - 🏗️ Standardized return data structures
31
- - 🛠️ Simplified API parameter design
32
- - ⏱️ Automatic timestamp and adjustment handling
33
-
34
- ## 🚀 Core Features
35
-
36
- | Function | Interface |
37
- |------|------|
38
- | Historical data | `get_hist_data` |
39
- | Real-time quotes | `get_realtime_data` |
40
- | Stock news | `get_news_data` |
41
- | Financial data | `get_balance_sheet`/`get_income_statement`/`get_cash_flow` |
42
- | Internal transactions | `get_inner_trade_data` |
43
- | Basic stock info | `get_basic_info` |
44
- | Financial metrics | `get_financial_metrics` |
45
- | Technical indicators | See [indicators.py](akshare-one/indicators.py) |
46
-
47
- ## 📦 Quick Installation
48
-
49
- ```bash
50
- pip install akshare-one
51
- ```
52
-
53
- ## 💻 Usage Example
54
-
55
- ```python
56
- from akshare_one import get_hist_data
57
- from akshare_one.indicators import get_sma
58
-
59
- # Get historical data
60
- df = get_hist_data(
61
- symbol="600000",
62
- interval="day",
63
- adjust="hfq"
64
- )
65
-
66
- # Calculate 20-day Simple Moving Average
67
- df_sma = get_sma(df, window=20)
68
- ```
69
-
70
- ## 📚 Documentation
71
-
72
- Full API documentation is now available on GitHub Pages:
73
-
74
- https://zwldarren.github.io/akshare-one/
1
+ Metadata-Version: 2.4
2
+ Name: akshare-one
3
+ Version: 0.3.8
4
+ Summary: Standardized interface for Chinese financial market data, built on AKShare with unified data formats and simplified APIs
5
+ License-Expression: MIT
6
+ Project-URL: Homepage, https://github.com/zwldarren/akshare-one
7
+ Project-URL: Repository, https://github.com/zwldarren/akshare-one.git
8
+ Keywords: akshare,financial-data,stock-data,quant
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: akshare>=1.17.31
13
+ Requires-Dist: cachetools>=5.5.2
14
+ Provides-Extra: talib
15
+ Requires-Dist: ta-lib>=0.6.4; extra == "talib"
16
+ Dynamic: license-file
17
+
18
+ <div align="center">
19
+ <h1>AKShare One</h1>
20
+ <div>
21
+ <a href="README_zh.md">中文</a> | <strong>English</strong>
22
+ </div>
23
+ </div>
24
+
25
+ **AKShare One** is a data interface for obtaining Chinese A-shares, based on [AKShare](https://github.com/akfamily/akshare). It aims to simplify AKShare's usage and unify input/output formats from different data sources, making it easier to pass data to LLM.
26
+
27
+ ## ✨ Features
28
+
29
+ - 📊 Unified stock code formats across data sources
30
+ - 🏗️ Standardized return data structures
31
+ - 🛠️ Simplified API parameter design
32
+ - ⏱️ Automatic timestamp and adjustment handling
33
+
34
+ ## 🚀 Core Features
35
+
36
+ | Function | Interface |
37
+ |------|------|
38
+ | Historical data | `get_hist_data` |
39
+ | Real-time quotes | `get_realtime_data` |
40
+ | Stock news | `get_news_data` |
41
+ | Financial data | `get_balance_sheet`/`get_income_statement`/`get_cash_flow` |
42
+ | Internal transactions | `get_inner_trade_data` |
43
+ | Basic stock info | `get_basic_info` |
44
+ | Financial metrics | `get_financial_metrics` |
45
+ | Technical indicators | See [indicators.py](akshare-one/indicators.py) |
46
+
47
+ ## 📦 Quick Installation
48
+
49
+ ```bash
50
+ pip install akshare-one
51
+ ```
52
+
53
+ ## 💻 Usage Example
54
+
55
+ ```python
56
+ from akshare_one import get_hist_data
57
+ from akshare_one.indicators import get_sma
58
+
59
+ # Get historical data
60
+ df = get_hist_data(
61
+ symbol="600000",
62
+ interval="day",
63
+ adjust="hfq"
64
+ )
65
+
66
+ # Calculate 20-day Simple Moving Average
67
+ df_sma = get_sma(df, window=20)
68
+ ```
69
+
70
+ ## 📚 Documentation
71
+
72
+ Full API documentation is now available on GitHub Pages:
73
+
74
+ https://zwldarren.github.io/akshare-one/
@@ -0,0 +1,39 @@
1
+ akshare_one/__init__.py,sha256=fcvvgGcJECDFCLAPCCl9ijNDVZmBeNrd7nIAoKXpDy0,6310
2
+ akshare_one/indicators.py,sha256=CltxhMoy6qbiQKIq2veTQ6xsf4_q7Ir3Zw8IfHyr4FI,12138
3
+ akshare_one/eastmoney/client.py,sha256=Lvbc-tIu_AkdWfrLrvSFHBhmcgRk-p2DfsOznq7Xg3s,2714
4
+ akshare_one/eastmoney/utils.py,sha256=9gOlgYGz_S8fSuWgJEIQB5vEkOOz649BGOchLMdHbHQ,2833
5
+ akshare_one/modules/cache.py,sha256=yCcaYgeJxd3TzhIFyEZrCUGDwPw6E0oyohp7HVrwd_0,840
6
+ akshare_one/modules/utils.py,sha256=H4nrGf8m4_ezTiW5-OcNPxpV-neTYfffEfaOLDFLY9Y,323
7
+ akshare_one/modules/financial/base.py,sha256=TNTk5VejmpMy4j68Aw59dk6M6xiySlKdDLwTeVsfQD4,661
8
+ akshare_one/modules/financial/eastmoney_direct.py,sha256=OiiWQynyQOrgXLfSp6ydmQE1a7dSn_5rCWEI3wSNNuw,6542
9
+ akshare_one/modules/financial/factory.py,sha256=5BZeRxf77GPoDEW1qy-73gWxl3TA1A8XThMshjoEs30,1422
10
+ akshare_one/modules/financial/sina.py,sha256=lOdg9C1MkFmwlZOgNJmr4pUoLLioBCYmQEK_Ofe1IXo,12509
11
+ akshare_one/modules/historical/base.py,sha256=JbzCIsT39XTXZRa8GzXjTCkcV-Ttcrhw_gpIr3iTDvA,1239
12
+ akshare_one/modules/historical/eastmoney.py,sha256=lKVZyvX5FAFQjJMaK9H85lf0gNA12SKum6-veHst1yo,8016
13
+ akshare_one/modules/historical/eastmoney_direct.py,sha256=JFeeFtdUYhT2JURt5hnDXYGB48sjFZRZrZthMLseIsw,2776
14
+ akshare_one/modules/historical/factory.py,sha256=K1JwhScNPvuP-wR33C5VnosJYXJ3u1RykJuaMU6-3ls,1500
15
+ akshare_one/modules/historical/sina.py,sha256=3E1JpDBIVC96d5tqEGUOpgJjiP4iCqSbPXkng0GL9Tk,8511
16
+ akshare_one/modules/indicators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ akshare_one/modules/indicators/base.py,sha256=oNfP2p1ZO-jdV9Ay7CECO7LrFCGs9y3Xxg7ewg9uAZ0,4218
18
+ akshare_one/modules/indicators/factory.py,sha256=FDERSNI7r22qN06PYzyzkB5fyhXa2f_v1Yj-A_e6dFc,988
19
+ akshare_one/modules/indicators/simple.py,sha256=fwkM7tqqu6JIX_jv5_w6klrGO3s3WCJTz87xy4dy-Hc,15479
20
+ akshare_one/modules/indicators/talib.py,sha256=w7C-21TZfiLcVA_WgE7aQ1nYVzbyhb99r5rzKS7a6aU,10510
21
+ akshare_one/modules/info/base.py,sha256=Uhq2cf-zWtED7OJglWWg9K6OlU9_EVP8dcai3uqIch4,672
22
+ akshare_one/modules/info/eastmoney.py,sha256=UJFxD44tB0Ijt9pVA4zmMJCZ9nEWTdHrMND7tECebls,1559
23
+ akshare_one/modules/info/factory.py,sha256=Jv1y73HDXB-Rw9KL6fWBIENgJsY9OJmJcv8FtEG7WAE,1264
24
+ akshare_one/modules/insider/base.py,sha256=QfzTksnjB7JlOMoJH8tcXkWuaybaZT5OwIQe-2MAL0s,938
25
+ akshare_one/modules/insider/factory.py,sha256=om51vX-GTXknpptZGvmDD9m10FfgEVmy402xZ3bBsNM,1280
26
+ akshare_one/modules/insider/xueqiu.py,sha256=N5YtnHu7AkJZaQQziSqjEiol7JBzmmkc0NvQPD-Pmdo,3822
27
+ akshare_one/modules/news/base.py,sha256=dm_1k91yKjKcKUWqwNGyJ_tNk3UkBr2V0E1iMbqwRfE,553
28
+ akshare_one/modules/news/eastmoney.py,sha256=Du9SE7Vp7hsMxCdPnvONmFy3OZjLmkOUqWDIYWD9laM,1202
29
+ akshare_one/modules/news/factory.py,sha256=Em6c7m46K760iwIX3GZ15HdFu7pXT2w-n4QsjwHezjY,1264
30
+ akshare_one/modules/realtime/base.py,sha256=XtD-4L1pCrMtfbwtZR7tP_BhWB_eMWtpQr89rAdX7P4,702
31
+ akshare_one/modules/realtime/eastmoney.py,sha256=ejVMGHGwHzG_Cqe1MZ0Qj5K-YjZAzm-2r0xIJtRUQAM,1529
32
+ akshare_one/modules/realtime/eastmoney_direct.py,sha256=9Ino69NVRWMid1QjKF_-_AXEqXW6iEE-CJXLVmagxSE,1200
33
+ akshare_one/modules/realtime/factory.py,sha256=qHdCDY6dA7ck4JgK3yUDqcne9WrruAA6XzbRT69kT2w,1480
34
+ akshare_one/modules/realtime/xueqiu.py,sha256=JI5JsKrCCKynMxfrerLGKrYPy7GziqJ89LtJrm38Jr0,2139
35
+ akshare_one-0.3.8.dist-info/licenses/LICENSE,sha256=Gg6A1GNSJCZWQ73aHJ7TXOa0i8RQ3FejZCTZ6Db07cU,1066
36
+ akshare_one-0.3.8.dist-info/METADATA,sha256=F4ho7XCEX60zK2TtWQjle8gU-lLD1-cxnCBuD4q3xq0,2198
37
+ akshare_one-0.3.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
38
+ akshare_one-0.3.8.dist-info/top_level.txt,sha256=kNiucyLVAGa89wmUSpXbBLWD7pF_RuahuiaOfLHZSyw,12
39
+ akshare_one-0.3.8.dist-info/RECORD,,
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 zwldarren
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 zwldarren
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,39 +0,0 @@
1
- akshare_one/__init__.py,sha256=htgTumncxiGHqXMgqmBuIQXoPBcOnwcTjCg02Ydr73I,6524
2
- akshare_one/indicators.py,sha256=x3Amff9CG_GvQpA-sqGfFwEAIvaaXlBxDfzTxD05taQ,12533
3
- akshare_one/eastmoney/client.py,sha256=SSMB4oupaCns5hxtSwxaX-UE_uOrxZEGxqUiC3BT-4k,2794
4
- akshare_one/eastmoney/utils.py,sha256=fATw0L5SW14wHWXlJ4IFEqnSsSBMT8MYGevxo7Kf1nY,2935
5
- akshare_one/modules/cache.py,sha256=_3n35rt9xJfQzZSV6JZ6bGzf2VnqTmLfe49WXk4c9K8,867
6
- akshare_one/modules/utils.py,sha256=msHqsjWSRULbX-3Bnit1p26a4a7MOEuNfkPSaECXr4k,333
7
- akshare_one/modules/financial/base.py,sha256=TG3ncf3rXfgWCk4qUORN01uxT1SgLWiyjkt5Jb9eoxo,688
8
- akshare_one/modules/financial/eastmoney_direct.py,sha256=BwiUWi3X24qbtrQv5ht2Lj6crgFrhdcgW4Aa53ZFEOg,6725
9
- akshare_one/modules/financial/factory.py,sha256=9xR_uKt7n8dndYUxEGDDL65LXnbm-edtTLdhF0Bfyro,1468
10
- akshare_one/modules/financial/sina.py,sha256=c6rSxCVNU6h-7XWSiqPHDN_XAhRdGHdqI9Haruy3mDs,12801
11
- akshare_one/modules/historical/base.py,sha256=kDy76OJUp-LIddsC23YAQdf4Q_YGCrnZ8AvU4xRzQsI,1286
12
- akshare_one/modules/historical/eastmoney.py,sha256=B1H67o1bj8RjaKhfRu0xSA0MoQTEXz_6gRUNg138gJU,8252
13
- akshare_one/modules/historical/eastmoney_direct.py,sha256=cBT5_tz6a4qEV5KMiyFBdOfEVTLlJfT2o4uNBIu137Y,2854
14
- akshare_one/modules/historical/factory.py,sha256=qfMod5HSV-itE-i1ludIp0w8Zq7Vjp2LPomajVd5Kjc,1548
15
- akshare_one/modules/historical/sina.py,sha256=sQoUnQlkxyI4i7Cuw5YwKT3IoNM8-K5wleusVM_tKJA,8761
16
- akshare_one/modules/indicators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- akshare_one/modules/indicators/base.py,sha256=DhFivpVIUIkdIv24U2WoOy1GCDySxsw0tD0-rBRe5Lc,4376
18
- akshare_one/modules/indicators/factory.py,sha256=pKx57oej_L0Lz3kkXwzVievKpOYph0T_Y7fzSwO3Zd4,1021
19
- akshare_one/modules/indicators/simple.py,sha256=vAqE3v9HYpW-Sy6KsG9oV5fppWchQTxtz1M_508sQtY,9342
20
- akshare_one/modules/indicators/talib.py,sha256=w0KpV-BXVxU0LmWs_EbXJUFgo9dbMeUQijjJMkjtWtU,10773
21
- akshare_one/modules/info/base.py,sha256=Kof-e1I2usx1VOc1d05kyL-8B_QEDOsbry4R3dV0zZE,697
22
- akshare_one/modules/info/eastmoney.py,sha256=pvWLcVoVWwgZS_4Bg-OtHQW5SPCZ9I1PAFbN4yqluq0,1610
23
- akshare_one/modules/info/factory.py,sha256=xvwPrgce0p9U4qAQBJM7FFw3zJks6m2hLHwHf0t1rfU,1308
24
- akshare_one/modules/insider/base.py,sha256=bJoyNSoa0o8py6GqjlMRIEV6DbOoc2OEOyE0vmjT_n4,966
25
- akshare_one/modules/insider/factory.py,sha256=32bueJA3E8yCZc0v5EAen_48RZ23yojYzpzaZyQ6WnA,1324
26
- akshare_one/modules/insider/xueqiu.py,sha256=7PfyRioZ6KHW82sbXYcc1yNF6QGPS-kPG7i91YoxNfU,3932
27
- akshare_one/modules/news/base.py,sha256=t8b_RBRDQ_HyqGHQWVzojbonNJmwp2p1ckpyYPaSmdY,575
28
- akshare_one/modules/news/eastmoney.py,sha256=kKNBmd-PRzMJVDauL_QIrFduB_E0vp96pLCuVsE3L-k,1245
29
- akshare_one/modules/news/factory.py,sha256=3FMkNBpYF7l-v2NHHR5TzbvklQNzJ-R_XzG8AlRjJcg,1308
30
- akshare_one/modules/realtime/base.py,sha256=eYicSs7E4qmcpQ-8TnbfmJvsK0VQoezVK7Zobqh5xPk,729
31
- akshare_one/modules/realtime/eastmoney.py,sha256=6acJeIdrvkW4ZqM9CALithlx85QSogrlPLSo-yKhQ8w,1582
32
- akshare_one/modules/realtime/eastmoney_direct.py,sha256=A2ScBRfIP6n_BxQ6muB26AEykIvTG7Mt3BDAZMyugkg,1236
33
- akshare_one/modules/realtime/factory.py,sha256=_7jBDgqWqkt5xTTT1SpZoUHM9IpMRpcUQeyyCglM5z0,1528
34
- akshare_one/modules/realtime/xueqiu.py,sha256=CHTN5VUwo24H-2EGKQkN8oqr3MWjDi-7DpvQEDyPlls,2196
35
- akshare_one-0.3.6.dist-info/licenses/LICENSE,sha256=3bqxoD7aU4QS7kpNtQmRd4MikxXe6Gtm_DrojyFHGAc,1087
36
- akshare_one-0.3.6.dist-info/METADATA,sha256=OfOSB9aFz49VnqjJpyHwocEmCAbSLMeC3YoPTNpkwzo,2272
37
- akshare_one-0.3.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
38
- akshare_one-0.3.6.dist-info/top_level.txt,sha256=kNiucyLVAGa89wmUSpXbBLWD7pF_RuahuiaOfLHZSyw,12
39
- akshare_one-0.3.6.dist-info/RECORD,,