接口:fund_manager
描述:获取公募基金经理数据,包括基金经理简历等数据
限量:单次最大3000条
输入参数
名称 | 类型 | 必选 | 描述 |
---|---|---|---|
ts_code | str | N | 基金代码,支持多只基金,逗号分隔 |
ann_date | str | N | 公告日期,格式:YYYYMMDD |
name | str | N | 基金经理姓名 |
offset | int | N | 开始行数 |
limit | int | N | 每页行数 |
输出参数
名称 | 类型 | 默认显示 | 描述 |
---|---|---|---|
ts_code | str | Y | 基金代码 |
ann_date | str | Y | 公告日期 |
name | str | Y | 基金经理姓名 |
gender | str | Y | 性别 |
birth_year | str | Y | 出生年份 |
edu | str | Y | 学历 |
nationality | str | Y | 国籍 |
begin_date | str | Y | 任职日期 |
end_date | str | Y | 离任日期 |
resume | str | Y | 简历 |
update_flag | str | Y | 更新标志 |
代码示例
#单只基金
df = pro.fund_manager(ts_code='150018.SZ')
#多只基金
df = pro.fund_manager(ts_code='150018.SZ,150008.SZ')
数据示例
ts_code ann_date name gender birth_year edu nationality
0 150008.SZ 20191029 赵建 M None 博士 中国
1 150008.SZ 20150210 路荣强 M None 硕士 澳大利亚
2 150008.SZ 20130926 殷瑞飞 M None 博士 中国
3 150008.SZ 20110817 熊志勇 M None 博士 中国
4 150018.SZ 20190831 张凯 M None 硕士 中国
5 150018.SZ 20100927 路志刚 M 1969 博士 中国
6 150018.SZ 20100508 周毅 M None 硕士 美国
begin_date ... update_flag
0 20191029 ... 1
1 20091014 ... 0
2 20130926 ... 1
3 20101127 ... 1
4 20190829 ... 1
5 20100507 ... 1
6 20100507 ... 1