Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
albertandking committed Dec 16, 2024
2 parents 9957c83 + 3cf3a54 commit 5a91977
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
3 changes: 2 additions & 1 deletion akshare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2957,9 +2957,10 @@
1.15.45 fix: fix stock_jgdy_detail_em interface
1.15.46 fix: fix fund_etf_fund_info_em interface
1.15.47 fix: fix stock_individual_spot_xq interface
1.15.48 fix: fix stock_mda_ym interface
"""

__version__ = "1.15.47"
__version__ = "1.15.48"
__author__ = "AKFamily"

import sys
Expand Down
1 change: 1 addition & 0 deletions akshare/stock_fundamental/stock_mda_ym.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def stock_mda_ym(symbol: str = "000001") -> pd.DataFrame:
]
big_df = pd.DataFrame([year_list, talk_list]).T
big_df.columns = ["报告期", "内容"]
big_df.sort_values(by=["报告期"], ignore_index=True, inplace=True)
return big_df


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.48 fix: fix stock_mda_ym interface

1. 修复 stock_mda_ym 接口

1.15.47 fix: fix stock_individual_spot_xq interface

1. 修复 stock_individual_spot_xq 接口
Expand Down Expand Up @@ -4856,6 +4860,8 @@

## 版本更新说明

1.15.48 fix: fix stock_mda_ym interface

1.15.47 fix: fix stock_individual_spot_xq interface

1.15.46 fix: fix fund_etf_fund_info_em interface
Expand Down
12 changes: 6 additions & 6 deletions docs/data/stock/stock.md
Original file line number Diff line number Diff line change
Expand Up @@ -4741,12 +4741,12 @@ print(stock_mda_ym_df)

```
报告期 内容
0 2023年度 一、总体经营情况 2023年,面对错综复杂的外部环境,本行坚持以“中国最卓越、全球领先...
1 2023中期 一、总体经营情况 2023年,是全面贯彻落实党的二十大精神的开局之年。年初以来,在以习...
2 2022年度 一、总体经营情况 2022 年,党的二十大胜利召开,这是在全党全国各族人民迈上全面建设...
3 2022中期 一、总体经营情况 2022 年将召开党的二十大,是党和国家事业发展进程中十分重要的一年...
4 2021年度 一、总体经营情况 2021 年是中国共产党成立 100 周年,是我国“十四五”规划的开...
5 2021中期 一、总体经营情况 2021 年是中国共产党建党 100 周年,是我国“十四五”规划的开...
0 2021中期 一、总体经营情况 2021 年是中国共产党建党 100 周年,是我国“十四五”规划的开...
1 2021年度 一、总体经营情况 2021 年是中国共产党成立 100 周年,是我国“十四五”规划的开...
2 2022中期 一、总体经营情况 2022 年将召开党的二十大,是党和国家事业发展进程中十分重要的一年...
3 2022年度 一、总体经营情况 2022 年,党的二十大胜利召开,这是在全党全国各族人民迈上全面建设...
4 2023中期 一、总体经营情况 2023年,是全面贯彻落实党的二十大精神的开局之年。年初以来,在以习...
5 2023年度 一、总体经营情况 2023年,面对错综复杂的外部环境,本行坚持以“中国最卓越、全球领先...
```

### 股票质押
Expand Down

0 comments on commit 5a91977

Please sign in to comment.