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 #5525

Merged
merged 3 commits into from
Jan 13, 2025
Merged

Dev #5525

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 @@ -2979,9 +2979,10 @@
1.15.67 fix: fix stock_hold_change_cninfo interface
1.15.68 fix: fix stock_research_report_em interface
1.15.69 fix: fix index_zh_a_hist_min_em interface
1.15.70 fix: fix stock_research_report_em interface
"""

__version__ = "1.15.69"
__version__ = "1.15.70"
__author__ = "AKFamily"

import sys
Expand Down
5 changes: 3 additions & 2 deletions akshare/stock_feature/stock_research_report_em.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
Date: 2025/1/9 21:35
Date: 2025/1/13 22:00
Desc: 东方财富网-数据中心-研究报告-个股研报
https://data.eastmoney.com/report/stock.jshtml
"""

import datetime
import pandas as pd
import requests

Expand All @@ -27,7 +28,7 @@ def stock_research_report_em(symbol: str = "000001") -> pd.DataFrame:
"rating": "*",
"ratingChange": "*",
"beginTime": "2000-01-01",
"endTime": "2025-01-01",
"endTime": f"{datetime.datetime.now().year + 1}-01-01",
"pageNo": "1",
"fields": "",
"qType": "0",
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.70 fix: fix stock_research_report_em interface

1. 修复 stock_research_report_em 接口

1.15.69 fix: fix index_zh_a_hist_min_em interface

1. 修复 index_zh_a_hist_min_em 接口
Expand Down Expand Up @@ -4966,6 +4970,8 @@

## 版本更新说明

1.15.70 fix: fix stock_research_report_em interface

1.15.69 fix: fix index_zh_a_hist_min_em interface

1.15.68 fix: fix stock_research_report_em interface
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
**风险提示**:[AKShare](https://github.com/akfamily/akshare) 开源财经数据接口库所采集的数据皆来自公开的数据源,不涉及任何个人隐私数据和非公开数据。
同时本项目提供的数据接口及相关数据仅用于学术研究,任何个人、机构及团体使用本项目的数据接口及相关数据请注意商业风险。

1. 本文档更新时间:**2025-01-12**;
1. 本文档更新时间:**2025-01-13**;
2. 如有 [AKShare](https://github.com/akfamily/akshare) 库、文档及数据的相关问题,请在 [AKShare Issues](https://github.com/akfamily/akshare/issues) 中提 Issues;
3. 欢迎关注 **数据科学实战** 微信公众号;<div><img src="https://jfds-1252952517.cos.ap-chengdu.myqcloud.com/akshare/readme/qrcode/ds.png"></div>
4. **知识星球【数据科学实战】** 2025 全新改版,聚焦于量化投资内容,欢迎加入 **知识星球【数据科学实战】** 高质量社区,里面有丰富的视频课程、问答、文章、书籍及代码等内容:
Expand Down
Loading