akshare 1.16.74__py3-none-any.whl → 1.16.76__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/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/spot/spot_sge.py +10 -1
- {akshare-1.16.74.dist-info → akshare-1.16.76.dist-info}/METADATA +1 -1
- {akshare-1.16.74.dist-info → akshare-1.16.76.dist-info}/RECORD +13 -13
- {akshare-1.16.74.dist-info → akshare-1.16.76.dist-info}/WHEEL +0 -0
- {akshare-1.16.74.dist-info → akshare-1.16.76.dist-info}/licenses/LICENSE +0 -0
- {akshare-1.16.74.dist-info → akshare-1.16.76.dist-info}/top_level.txt +0 -0
akshare/__init__.py
CHANGED
@@ -3083,9 +3083,11 @@ 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
|
3087
|
+
1.16.76 fix: fix spot_quotations_sge interface
|
3086
3088
|
"""
|
3087
3089
|
|
3088
|
-
__version__ = "1.16.
|
3090
|
+
__version__ = "1.16.76"
|
3089
3091
|
__author__ = "AKFamily"
|
3090
3092
|
|
3091
3093
|
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)
|
akshare/spot/spot_sge.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- coding:utf-8 -*-
|
2
2
|
# !/usr/bin/env python
|
3
3
|
"""
|
4
|
-
Date:
|
4
|
+
Date: 2025/4/11 22:00
|
5
5
|
Desc: 上海黄金交易所-数据资讯-行情走势
|
6
6
|
https://www.sge.com.cn/sjzx/mrhq
|
7
7
|
上海黄金交易所-数据资讯-上海金基准价-历史数据
|
@@ -94,6 +94,15 @@ def spot_quotations_sge(symbol: str = "Au99.99") -> pd.DataFrame:
|
|
94
94
|
}
|
95
95
|
)
|
96
96
|
temp_df["现价"] = pd.to_numeric(temp_df["现价"], errors="coerce")
|
97
|
+
# 将更新时间中的时间部分提取出来
|
98
|
+
update_time = temp_df["更新时间"].iloc[0].split()[1]
|
99
|
+
# 将时间列转换为时间格式以便排序
|
100
|
+
temp_df["时间"] = pd.to_datetime(temp_df["时间"], format="%H:%M").dt.time
|
101
|
+
# 过滤掉大于等于更新时间的数据
|
102
|
+
temp_df = temp_df[temp_df["时间"].astype(str) < update_time]
|
103
|
+
# 按时间排序
|
104
|
+
temp_df = temp_df.sort_values(by=["时间"])
|
105
|
+
temp_df.reset_index(inplace=True, drop=True)
|
97
106
|
return temp_df
|
98
107
|
|
99
108
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
akshare/__init__.py,sha256=
|
1
|
+
akshare/__init__.py,sha256=M2LCAwg8ikmDw8mj9U3ClMI-_tpVADjqOo3PARyUqXI,193191
|
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
|
@@ -232,7 +232,7 @@ akshare/sport/sport_olympic.py,sha256=InkuHz4So8r-0101rUzdro58zsgtr5SLuSxWjiObRG
|
|
232
232
|
akshare/spot/__init__.py,sha256=BvXm1zCReGMWbcANKydbK9uvYzNU-cbReuUYbdDqunI,82
|
233
233
|
akshare/spot/spot_hog_soozhu.py,sha256=IEt7zrDs0ptAKgMA7QRIk45jcMLcA_LGq6Y3lKLFTi0,9397
|
234
234
|
akshare/spot/spot_price_qh.py,sha256=rRv09vR8K0U_x6x8AiLgGluxytIXkLatFNVkFbIh8eQ,3756
|
235
|
-
akshare/spot/spot_sge.py,sha256=
|
235
|
+
akshare/spot/spot_sge.py,sha256=fXy6I9GchX2rfdPDD2wSN8K-hcDdS3ABzLDLdH-9t4Y,8696
|
236
236
|
akshare/stock/__init__.py,sha256=jSa9260d6aNZajaW68chI2mpPkDSXLOgi3eXrqo4MQ8,82
|
237
237
|
akshare/stock/cons.py,sha256=pAMixwmjYARzCVWIxN7RjhjnJMpvLR2OD6mZ-zI7jlM,42990
|
238
238
|
akshare/stock/stock_allotment_cninfo.py,sha256=OVjVdWp2XVRNbJvVgtgVVoBmPBJgBB4RyIIgA_9QHM8,6066
|
@@ -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.76.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.76.dist-info/METADATA,sha256=jKwqL4MrpCky7D0qAPcJRKbyTamAaDYkhajUeEHSuIM,12591
|
401
|
+
akshare-1.16.76.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
402
|
+
akshare-1.16.76.dist-info/top_level.txt,sha256=jsf9ZzZPmHaISTVumQPsAw7vv7Yv-PdEVW70SMEelQQ,14
|
403
|
+
akshare-1.16.76.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|