Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #5445

Merged
merged 2 commits into from
Dec 21, 2024
Merged

Dev #5445

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion akshare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2960,9 +2960,10 @@
1.15.48 fix: fix stock_mda_ym interface
1.15.49 fix: fix option_dce_daily interface
1.15.50 fix: fix stock_gpzy_profile_em interface
1.15.51 fix: fix stock_gpzy_pledge_ratio_em interface
"""

__version__ = "1.15.50"
__version__ = "1.15.51"
__author__ = "AKFamily"

import sys
Expand Down
2 changes: 1 addition & 1 deletion akshare/stock_feature/stock_gpzy_em.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def stock_gpzy_industry_data_em() -> pd.DataFrame:
stock_gpzy_profile_em_df = stock_gpzy_profile_em()
print(stock_gpzy_profile_em_df)

stock_em_gpzy_pledge_ratio_df = stock_gpzy_pledge_ratio_em(date="20240906")
stock_em_gpzy_pledge_ratio_df = stock_gpzy_pledge_ratio_em(date="20241220")
print(stock_em_gpzy_pledge_ratio_df)

stock_gpzy_pledge_ratio_detail_em_df = stock_gpzy_pledge_ratio_detail_em()
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@

## 更新说明详情

1.15.51 fix: fix stock_gpzy_pledge_ratio_em interface

1. 修复 stock_gpzy_pledge_ratio_em 接口

1.15.50 fix: fix stock_gpzy_profile_em interface

1. 修复 stock_gpzy_profile_em 接口
Expand Down Expand Up @@ -4869,6 +4873,8 @@

## 版本更新说明

1.15.51 fix: fix stock_gpzy_pledge_ratio_em interface

1.15.50 fix: fix stock_gpzy_profile_em interface

1.15.49 fix: fix option_dce_daily interface
Expand Down
26 changes: 13 additions & 13 deletions docs/data/stock/stock.md
Original file line number Diff line number Diff line change
Expand Up @@ -4847,26 +4847,26 @@ print(stock_gpzy_profile_em_df)
```python
import akshare as ak

stock_gpzy_pledge_ratio_em_df = ak.stock_gpzy_pledge_ratio_em(date="20240906")
stock_gpzy_pledge_ratio_em_df = ak.stock_gpzy_pledge_ratio_em(date="20241220")
print(stock_gpzy_pledge_ratio_em_df)
```

数据示例

```
序号 股票代码 股票简称 交易日期 ... 无限售股质押数 限售股质押数 近一年涨跌幅 所属行业代码
0 1 000567 海德股份 2024-09-06 ... 146779.06 0.0 -41.602946 016058
1 2 000688 国城矿业 2024-09-06 ... 78404.69 0.0 -32.065962 016032
2 3 002485 ST雪发 2024-09-06 ... 37266.20 0.0 -42.857143 016010
3 4 000020 深华发A 2024-09-06 ... 11610.00 0.0 -6.831276 016079
4 5 603132 金徽股份 2024-09-06 ... 0.00 59360.0 -17.034780 016032
序号 股票代码 股票简称 交易日期 ... 无限售股质押数 限售股质押数 近一年涨跌幅 所属行业代码
0 1 000567 海德股份 2024-12-20 ... 146779.06 0.0 6.965560 016058
1 2 000688 国城矿业 2024-12-20 ... 78404.69 0.0 40.018282 016032
2 3 002485 ST雪发 2024-12-20 ... 37266.20 0.0 -31.400000 016010
3 4 000020 深华发A 2024-12-20 ... 11610.00 0.0 13.596838 016079
4 5 603132 金徽股份 2024-12-20 ... 0.00 59960.0 -5.566960 016032
... ... ... ... ... ... ... ... ... ...
2317 2318 601899 紫金矿业 2024-09-06 ... 12.40 0.0 14.745639 016052
2318 2319 601377 兴业证券 2024-09-06 ... 9.90 0.0 -17.656103 016027
2319 2320 601766 中国中车 2024-09-06 ... 30.58 0.0 15.727887 016008
2320 2321 601989 中国重工 2024-09-06 ... 76.66 0.0 NaN 016049
2321 2322 603927 中科软 2024-09-06 ... 2.94 0.0 -35.284407 016057
[2322 rows x 13 columns]
2305 2306 600640 国脉文化 2024-12-20 ... 0.22 0.0 8.495713 016039
2306 2307 600630 龙头股份 2024-12-20 ... 0.57 0.0 -3.577285 016010
2307 2308 002432 九安医疗 2024-12-20 ... 1.20 0.0 13.687060 016082
2308 2309 601989 中国重工 2024-12-20 ... 76.66 0.0 18.591879 016049
2309 2310 600642 申能股份 2024-12-20 ... 5.00 0.0 51.730585 016007
[2310 rows x 13 columns]
```

#### 重要股东股权质押明细
Expand Down
Loading