获取英为财情全球财经新闻,支持多类别筛选
基本信息
| 项目 | 值 |
| 爬虫名称 | investing_news |
| 平台 | 英为财情 |
| 版本 | 1.0.0 |
| 作者 | noimank |
请求参数
| 参数名 | 类型 | 必填 | 默认值 | 说明 |
category | str | ✗ | all | |
limit | int | ✗ | 20 | 获取新闻数量,默认20条,最大50条 |
使用示例
API 调用
curl -X POST http://localhost:8380/api/v1/spiders/run -H "Content-Type: application/json" -d '{
"spider_name": "investing_news",
"params": { ... }
}'
Python SDK
import httpx
async with httpx.AsyncClient() as client:
resp = await client.post(
"http://localhost:8380/api/v1/spiders/run",
json={
"spider_name": "investing_news",
"params": { ... }
}
)
result = resp.json()
返回格式
{
"success": true,
"message": "执行成功",
"data": { ... },
"execution_time": 1.23
}