|
|
# 基金信息收集需求
|
|
|
## 网站描述
|
|
|
[东方财富网]()是一家专业的财经证券门户网站,包含股票、基金等多种财经资讯。本实验的目标是对[基金](http://fund.eastmoney.com/bzdm.html#os_0;isall_0;ft_;pt_1)相关的信息进行采集。
|
|
|
|
|
|
如下是某个基金的信息:
|
|
|
![image](uploads/169f539949417e0bfa0796e4f93beb4b/image.png)
|
|
|
![image](uploads/8d6e87190a6ada6d5a01ee8e8f9ebd56/image.png)
|
|
|
![image](uploads/a42af3577544b571328a503ab52e491b/image.png)
|
|
|
|
|
|
## 数据格式
|
|
|
采集得到的数据要求为`json`格式,要求的字段及描述如下:
|
|
|
```js
|
|
|
[
|
|
|
{
|
|
|
'code': ['000001', '000002'] // 基金前、后端代码列表,可能无后端代码
|
|
|
'url': 'http://fund.eastmoney.com/000001.html' // 基金页面url
|
|
|
'name': '华夏成长混合', // 基金名称
|
|
|
'type': '混合型', // 基金类型
|
|
|
'risk': '中高风险', // 基金风险
|
|
|
'scale': '45.76亿元', // 基金规模
|
|
|
'managers': [ // 基金经理变动列表,按时间由近到远顺序排列
|
|
|
{
|
|
|
'start': '2017-03-28', // 任职起始期
|
|
|
'end': '至今', // 任职截止期
|
|
|
'urls': ['http://fund.eastmoney.com/manager/30198442.html'] // 基金经理们的url
|
|
|
},
|
|
|
...
|
|
|
],
|
|
|
'foundation': '2001-12-18', // 成立日
|
|
|
'administrator': { // 管理人
|
|
|
'name': '华夏基金',
|
|
|
'url': 'http://fund.eastmoney.com/company/80000222.html'
|
|
|
},
|
|
|
'rate': '暂无评级', // 基金评级,评星数,如'3'
|
|
|
'stockHolding': [ // 股票持仓
|
|
|
{
|
|
|
'time': '2019年3季度', // 时间
|
|
|
'stocks': [
|
|
|
{
|
|
|
'stockCode': '300232', // 股票代码
|
|
|
'rate': '6.00%' // 占净值比例
|
|
|
},
|
|
|
...
|
|
|
]
|
|
|
},
|
|
|
...
|
|
|
],
|
|
|
'bondHolding': [ // 债券持仓
|
|
|
{
|
|
|
'time': '2019年3季度',
|
|
|
'stocks': [
|
|
|
{
|
|
|
'bondCode': '180208', // 债券代码
|
|
|
'rate': '3.33%' // 占净值比例
|
|
|
},
|
|
|
...
|
|
|
]
|
|
|
},
|
|
|
...
|
|
|
],
|
|
|
}
|
|
|
]
|
|
|
```
|
|
|
|
|
|
## 评分标准
|
|
|
* 获取2000条基金数据(可以得1分)
|
|
|
* 在上述基础上采集到所有基金代码、url和基金经理信息(可以得2分)
|
|
|
* 在上述基础上采集到所有股票持仓和债券持仓信息(可以得3分) |
|
|
\ No newline at end of file |