Files
MoFin/venv/lib/python3.12/site-packages/akshare/fund/fund_announcement_em.py
T
知微 fa45d8aa5f fix: 小果地址统一node122(兼容LAN+EasyTier)
- health_checklist.json: 192.168.1.122→node122
- ocr_client.py: docstring IP→node122
- docs/market-data-requirements.md: IP→node122
- 所有API调用通过ProxyHandler({})绕过系统代理
  Privoxy对node122:18003返回500,直连正常
2026-06-30 02:56:35 +08:00

146 lines
4.9 KiB
Python

#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
Date: 2025/9/20 17:40
Desc: 东方财富网站-天天基金网-基金档案-基金公告
https://fundf10.eastmoney.com/jjgg_000001.html
"""
import time
import pandas as pd
import requests
def fund_announcement_dividend_em(symbol: str = "000001") -> pd.DataFrame:
"""
东方财富网站-天天基金网-基金档案-基金公告-分红配送
https://fundf10.eastmoney.com/jjgg_000001_2.html
:param symbol: 基金代码; 可以通过调用 ak.fund_name_em() 接口获取
:type symbol: str
:return: 分红配送-公告列表
:rtype: pandas.DataFrame
"""
url = "http://api.fund.eastmoney.com/f10/JJGG"
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) "
"Chrome/80.0.3987.149 Safari/537.36",
"Referer": f"http://fundf10.eastmoney.com/jjgg_{symbol}_2.html",
}
params = {
"fundcode": symbol,
"pageIndex": "1",
"pageSize": "1000",
"type": "2",
"_": round(time.time() * 1000),
}
r = requests.get(url, params=params, headers=headers)
data_json = r.json()
temp_df = pd.DataFrame(data_json["Data"])
temp_df.columns = [
"基金代码",
"公告标题",
"基金名称",
"_",
"_",
"公告日期",
"_",
"报告ID",
]
temp_df = temp_df[["基金代码", "公告标题", "基金名称", "公告日期", "报告ID"]]
temp_df.sort_values(by=["公告日期"], inplace=True, ignore_index=True)
temp_df["公告日期"] = pd.to_datetime(temp_df["公告日期"], errors="coerce").dt.date
return temp_df
def fund_announcement_report_em(symbol: str = "000001") -> pd.DataFrame:
"""
东方财富网站-天天基金网-基金档案-基金公告-定期报告
https://fundf10.eastmoney.com/jjgg_000001_3.html
:param symbol: 基金代码; 可以通过调用 ak.fund_name_em() 接口获取
:type symbol: str
:return: 定期报告-公告列表
:rtype: pandas.DataFrame
"""
url = "http://api.fund.eastmoney.com/f10/JJGG"
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) "
"Chrome/80.0.3987.149 Safari/537.36",
"Referer": f"http://fundf10.eastmoney.com/jjgg_{symbol}_3.html",
}
params = {
"fundcode": symbol,
"pageIndex": "1",
"pageSize": "1000",
"type": "3",
"_": round(time.time() * 1000),
}
r = requests.get(url, params=params, headers=headers)
data_json = r.json()
temp_df = pd.DataFrame(data_json["Data"])
temp_df.columns = [
"基金代码",
"公告标题",
"基金名称",
"_",
"_",
"公告日期",
"_",
"报告ID",
]
temp_df = temp_df[["基金代码", "公告标题", "基金名称", "公告日期", "报告ID"]]
temp_df.sort_values(by=["公告日期"], inplace=True, ignore_index=True)
temp_df["公告日期"] = pd.to_datetime(temp_df["公告日期"], errors="coerce").dt.date
return temp_df
def fund_announcement_personnel_em(symbol: str = "000001") -> pd.DataFrame:
"""
东方财富网站-天天基金网-基金档案-基金公告-人事调整
https://fundf10.eastmoney.com/jjgg_000001_4.html
:param symbol: 基金代码; 可以通过调用 ak.fund_name_em() 接口获取
:type symbol: str
:return: 人事调整-公告列表
:rtype: pandas.DataFrame
"""
url = "http://api.fund.eastmoney.com/f10/JJGG"
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36",
"Referer": f"http://fundf10.eastmoney.com/jjgg_{symbol}_4.html",
}
params = {
"fundcode": symbol,
"pageIndex": "1",
"pageSize": "1000",
"type": "4",
"_": round(time.time() * 1000),
}
r = requests.get(url, params=params, headers=headers)
data_json = r.json()
temp_df = pd.DataFrame(data_json["Data"])
temp_df.columns = [
"基金代码",
"公告标题",
"基金名称",
"_",
"_",
"公告日期",
"_",
"报告ID",
]
temp_df = temp_df[["基金代码", "公告标题", "基金名称", "公告日期", "报告ID"]]
temp_df.sort_values(by=["公告日期"], inplace=True, ignore_index=True)
temp_df["公告日期"] = pd.to_datetime(temp_df["公告日期"], errors="coerce").dt.date
return temp_df
if __name__ == "__main__":
fund_announcement_dividend_em_df = fund_announcement_dividend_em(symbol="000001")
print(fund_announcement_dividend_em_df)
fund_announcement_report_em_df = fund_announcement_report_em(symbol="000001")
print(fund_announcement_report_em_df)
fund_announcement_personnel_em_df = fund_announcement_personnel_em(symbol="000001")
print(fund_announcement_personnel_em_df)