-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgit-repo.json
43 lines (43 loc) · 1.31 KB
/
git-repo.json
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
37
38
39
40
41
42
43
{
"browserType": null,
"targetXPath": "\/\/div[@class=\"explore-content\"]",
"targetCssPath": null,
"rowXPath": "\/\/*[contains(@class,\"repo-list\")]\/li",
"rowCssPath": null,
"fields": [
{
"property": null,
"name": "repo_name",
"xpath": ".\/\/div[1]\/h3\/a",
"cssPath": null,
"canBeEmpty": false,
"phpClass": "Scraper\\Structure\\TextField"
},
{
"convertRelativeUrl": true,
"property": null,
"name": "repo_url",
"xpath": ".\/\/div[1]\/h3\/a",
"cssPath": null,
"canBeEmpty": false,
"phpClass": "Scraper\\Structure\\AnchorField"
},
{
"property": null,
"name": "description",
"xpath": ".\/\/div[@class=\"py-1\"]\/p",
"cssPath": null,
"canBeEmpty": true,
"phpClass": "Scraper\\Structure\\TextField"
},
{
"regex": "\/(\\d*)\\s[stars]\/",
"name": "stars_today",
"xpath": ".\/\/div[4]\/span[@class=\"float-right\"]",
"cssPath": null,
"canBeEmpty": false,
"phpClass": "Scraper\\Structure\\RegexField"
}
],
"phpClass": "Scraper\\Structure\\Configuration"
}