-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathscraper-config.json
More file actions
73 lines (73 loc) · 1.67 KB
/
Copy pathscraper-config.json
File metadata and controls
73 lines (73 loc) · 1.67 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"eztv": {
"name": "EZTV",
"url": "https://eztvx.to/search/{{query}}",
"list": "table tr.forum_header_border",
"result": {
"name": "a.epinfo",
"url": [
"a.epinfo",
"@href"
],
"magnet": [
"a.magnet",
"@href"
],
"size": "td:nth-of-type(4)",
"seeds": "td:nth-of-type(6) font"
}
},
"nyaa": {
"name": "Nyaa",
"url": "https://nyaa.si/?f=0&c=0_0&s=seeders&o=desc&q={{query}}&p=1",
"list": "table.torrent-list > tbody > tr",
"result": {
"name": [
"td:nth-of-type(2) a:not([class])",
""
],
"path": [
"td:nth-of-type(2) a:not([class])",
"@href"
],
"magnet": [
"td:nth-of-type(3) a[href^=\"magnet:\"]",
"@href"
],
"size": "td:nth-of-type(4)",
"seeds": "td:nth-of-type(6)",
"peers": "td:nth-of-type(7)"
}
},
"thepiratebay": {
"name": "The Pirate Bay",
"url": "https://apibay.org/q.php?q={{query}}&cat=0",
"json": true,
"result": {
"name": "name",
"infohash": "info_hash",
"size": "size",
"seeds": "seeders",
"peers": "leechers"
}
},
"uindex": {
"name": "uindex",
"url": "https://uindex.org/search.php?search={{query}}",
"list": "table.maintable tr:not(:first-child)",
"result": {
"name": "td:nth-child(2) a[href^='/details.php']",
"url": [
"td:nth-child(2) a[href^='/details.php']",
"@href"
],
"magnet": [
"td:nth-child(2) a[href^='magnet:']",
"@href"
],
"size": "td:nth-child(3)",
"seeds": "td:nth-child(4)",
"peers": "td:nth-child(5)"
}
}
}