akshare 1.16.74__py3-none-any.whl → 1.16.75__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 +2 -1
- akshare/qhkc/__init__.py +1 -6
- akshare/qhkc/qhkc_api.py +1 -1
- akshare/qhkc_web/__init__.py +1 -6
- akshare/qhkc_web/qhkc_fund.py +3 -3
- akshare/qhkc_web/qhkc_index.py +10 -8
- akshare/qhkc_web/qhkc_tool.py +5 -4
- {akshare-1.16.74.dist-info → akshare-1.16.75.dist-info}/METADATA +1 -1
- {akshare-1.16.74.dist-info → akshare-1.16.75.dist-info}/RECORD +12 -12
- {akshare-1.16.74.dist-info → akshare-1.16.75.dist-info}/WHEEL +0 -0
- {akshare-1.16.74.dist-info → akshare-1.16.75.dist-info}/licenses/LICENSE +0 -0
- {akshare-1.16.74.dist-info → akshare-1.16.75.dist-info}/top_level.txt +0 -0
akshare/__init__.py
CHANGED
@@ -3083,9 +3083,10 @@ amac_manager_cancelled_info # 中国证券投资基金业协会-信息公示-诚
|
|
3083
3083
|
1.16.72 add: add bond_sh_buy_back_em interface
|
3084
3084
|
1.16.73 fix: fix stock_board_industry_hist_em interface
|
3085
3085
|
1.16.74 fix: fix stock_individual_spot_xq interface
|
3086
|
+
1.16.75 fix: fix get_qhkc_index interface
|
3086
3087
|
"""
|
3087
3088
|
|
3088
|
-
__version__ = "1.16.
|
3089
|
+
__version__ = "1.16.75"
|
3089
3090
|
__author__ = "AKFamily"
|
3090
3091
|
|
3091
3092
|
import sys
|
akshare/qhkc/__init__.py
CHANGED
akshare/qhkc/qhkc_api.py
CHANGED
akshare/qhkc_web/__init__.py
CHANGED
akshare/qhkc_web/qhkc_fund.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# -*- coding:utf-8 -*-
|
3
3
|
"""
|
4
|
-
Date:
|
4
|
+
Date: 2025/4/10 18:00
|
5
5
|
Desc: 奇货可查网站目前已经商业化运营, 特提供奇货可查-资金数据接口, 方便您程序化调用
|
6
6
|
注:期货价格为收盘价; 现货价格来自网络; 基差=现货价格-期货价格; 基差率=(现货价格-期货价格)/现货价格 * 100 %.
|
7
7
|
"""
|
@@ -418,5 +418,5 @@ if __name__ == "__main__":
|
|
418
418
|
# print(df1)
|
419
419
|
# print(df2)
|
420
420
|
|
421
|
-
|
422
|
-
print(
|
421
|
+
get_qhkc_fund_money_change_df = get_qhkc_fund_money_change(20211208)
|
422
|
+
print(get_qhkc_fund_money_change_df)
|
akshare/qhkc_web/qhkc_index.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
# -*- coding:utf-8 -*-
|
3
3
|
"""
|
4
|
-
Date:
|
4
|
+
Date: 2025/4/10 18:00
|
5
5
|
Desc: 奇货可查网站目前已经商业化运营, 特提供奇货可查-指数数据接口, 方便您程序化调用
|
6
6
|
注:期货价格为收盘价; 现货价格来自网络; 基差=现货价格-期货价格; 基差率=(现货价格-期货价格)/现货价格 * 100 %.
|
7
7
|
"""
|
@@ -132,7 +132,7 @@ def get_qhkc_index_trend(name: AnyStr = "奇货商品", url: AnyStr = QHKC_INDEX
|
|
132
132
|
money = item["money"]
|
133
133
|
order_money = item["order_money"]
|
134
134
|
variety = item["variety"]
|
135
|
-
df_temp = df_temp.
|
135
|
+
df_temp = df_temp._append(
|
136
136
|
pd.DataFrame([broker, grade, money, order_money, variety]).T
|
137
137
|
)
|
138
138
|
df_temp.columns = ["broker", "grade", "money", "open_order", "variety"]
|
@@ -187,9 +187,11 @@ def get_qhkc_index_profit_loss(
|
|
187
187
|
|
188
188
|
|
189
189
|
if __name__ == "__main__":
|
190
|
-
|
191
|
-
print(
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
190
|
+
get_qhkc_index_df = get_qhkc_index("奇货谷物")
|
191
|
+
print(get_qhkc_index_df)
|
192
|
+
|
193
|
+
get_qhkc_index_trend_df = get_qhkc_index_trend("奇货贵金属")
|
194
|
+
print(get_qhkc_index_trend_df)
|
195
|
+
|
196
|
+
get_qhkc_index_profit_loss_df = get_qhkc_index_profit_loss("奇货贵金属", end_date="20250410")
|
197
|
+
print(get_qhkc_index_profit_loss_df)
|
akshare/qhkc_web/qhkc_tool.py
CHANGED
@@ -172,7 +172,8 @@ def qhkc_tool_gdp(url: AnyStr = QHKC_TOOL_GDP_URL):
|
|
172
172
|
|
173
173
|
|
174
174
|
if __name__ == "__main__":
|
175
|
-
|
176
|
-
print(
|
177
|
-
|
178
|
-
|
175
|
+
qhkc_tool_foreign_df = qhkc_tool_foreign()
|
176
|
+
print(qhkc_tool_foreign_df)
|
177
|
+
|
178
|
+
qhkc_tool_gdp_df = qhkc_tool_gdp()
|
179
|
+
print(qhkc_tool_gdp_df)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
akshare/__init__.py,sha256=
|
1
|
+
akshare/__init__.py,sha256=mFH9R0cW2wCtgC0g0XKEzcFBrnP5eswX1Jwv3by2mdQ,193144
|
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
|
@@ -217,12 +217,12 @@ akshare/pro/cons.py,sha256=ZXTuihl3Pej84O17YdFG1SqPhfD6dQR34Pp8IKak7oQ,245
|
|
217
217
|
akshare/pro/data_pro.py,sha256=XLpqaZNUPddOBcFK1jBvf4AOYnHJAnoeEitTs0mAA10,831
|
218
218
|
akshare/qdii/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
219
219
|
akshare/qdii/qdii_jsl.py,sha256=-BbTDkrevK65D3x9xSc3v8KJPT88nIuJK9K_9q3UP2A,7920
|
220
|
-
akshare/qhkc/__init__.py,sha256=
|
221
|
-
akshare/qhkc/qhkc_api.py,sha256=
|
222
|
-
akshare/qhkc_web/__init__.py,sha256=
|
223
|
-
akshare/qhkc_web/qhkc_fund.py,sha256=
|
224
|
-
akshare/qhkc_web/qhkc_index.py,sha256=
|
225
|
-
akshare/qhkc_web/qhkc_tool.py,sha256=
|
220
|
+
akshare/qhkc/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
221
|
+
akshare/qhkc/qhkc_api.py,sha256=LsgyPG57HIF3Ot1EjF2M6qWGSwEg1vdPXKgCg4G4Sec,8364
|
222
|
+
akshare/qhkc_web/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
223
|
+
akshare/qhkc_web/qhkc_fund.py,sha256=gDA7noM4BT_3K7CwkYOAJFTo30WwL7bNb7kHxlnJS0E,17455
|
224
|
+
akshare/qhkc_web/qhkc_index.py,sha256=z0Q0y4zrxAzb5Ti3SuN3T8VgsOMRLWUqrvEKWcdJiG4,9227
|
225
|
+
akshare/qhkc_web/qhkc_tool.py,sha256=e6eW2G9fXwDLVwd2qPe7y5kJX8KIU44YZyuL2VZGEMM,9257
|
226
226
|
akshare/rate/__init__.py,sha256=qbRx0IhTYi5ZakakyP1xD7dwHmqqkuAvBh0Z1kQr3MQ,82
|
227
227
|
akshare/rate/repo_rate.py,sha256=lxSEMOeWsf-cVfJfZ7XBfSqOwYYQSJKp3iamCWubfjg,4295
|
228
228
|
akshare/reits/__init__.py,sha256=icmIWDUbQg5O-0SJCvf44FzvypneQrb3D-s540_kFk8,81
|
@@ -394,10 +394,10 @@ akshare/utils/func.py,sha256=4cwmXFztU86yJNONJ40KJLvsIEQHBbct4iMm3zT2v30,2315
|
|
394
394
|
akshare/utils/multi_decrypt.py,sha256=aWoL2iEPeuXHJg8-n7OtMKixLnIhfzepACgxfrfmQB4,1657
|
395
395
|
akshare/utils/token_process.py,sha256=nGtgnZGRprXJkhLXH8mcUH4TgIFwzsTOb0EaEPa0Euo,667
|
396
396
|
akshare/utils/tqdm.py,sha256=MuPNwcswkOGjwWQOMWXi9ZvQ_RmW4obCWRj2i7HM7FE,847
|
397
|
-
akshare-1.16.
|
397
|
+
akshare-1.16.75.dist-info/licenses/LICENSE,sha256=mmSZCPgfHiVw34LXuFArd-SUgQtBJ_QsIlh-kWlDHfs,1073
|
398
398
|
tests/__init__.py,sha256=gNzhlO0UPjFq6Ieb38kaVIODXv4cTDByrdohAZnDYt4,82
|
399
399
|
tests/test_func.py,sha256=j1MGYbZI2if2j_LY1S4FLsf4qfq4NwVqD5wmRlv5Log,832
|
400
|
-
akshare-1.16.
|
401
|
-
akshare-1.16.
|
402
|
-
akshare-1.16.
|
403
|
-
akshare-1.16.
|
400
|
+
akshare-1.16.75.dist-info/METADATA,sha256=p7PdD8Bi0t-lyJ-pXC3sUuWb68YpzhZdG9czeEH0WyM,12591
|
401
|
+
akshare-1.16.75.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
402
|
+
akshare-1.16.75.dist-info/top_level.txt,sha256=jsf9ZzZPmHaISTVumQPsAw7vv7Yv-PdEVW70SMEelQQ,14
|
403
|
+
akshare-1.16.75.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|