-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-cfg.json
More file actions
36 lines (36 loc) · 848 Bytes
/
Copy pathexample-cfg.json
File metadata and controls
36 lines (36 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"Structured-Web-Data-Crawler": {
"data_dir": "./crawled_sites",
"target_sites": [{
"project_name": "sina",
"version": "20190228",
"threads": 4,
"base_url": "https://news.sina.com.cn/china",
"white_list": [
"news.sina.com.cn"
],
"target_components": [{
"name": "hot_points",
"sub_domains": [
"news.sina.com.cn"
],
"sub_urls": [
"/c/2019-02-28"
],
"components": [{
"role": "photo",
"format": "image",
"selector": "#article > div > img"
},{
"role": "title",
"format": "text",
"selector": "body > div.main-content > h1"
},{
"role": "article",
"format": "text",
"selector": "#article"
}]
}]
}]
}
}