mirror of
https://github.com/Jackett/Jackett
synced 2025-01-03 21:57:49 +00:00
add solidtorrents: a Public meta-search engine. resolves #4751
This commit is contained in:
parent
4189aeac0e
commit
00494bdac1
2 changed files with 75 additions and 0 deletions
|
@ -61,6 +61,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
||||||
* shokweb
|
* shokweb
|
||||||
* ShowRSS
|
* ShowRSS
|
||||||
* SkyTorrentsClone
|
* SkyTorrentsClone
|
||||||
|
* SolidTorrents
|
||||||
* sukebei.Nyaa.si
|
* sukebei.Nyaa.si
|
||||||
* sukebei-Pantsu
|
* sukebei-Pantsu
|
||||||
* The Pirate Bay (TPB)
|
* The Pirate Bay (TPB)
|
||||||
|
|
74
src/Jackett.Common/Definitions/solidtorrents.yml
Normal file
74
src/Jackett.Common/Definitions/solidtorrents.yml
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
---
|
||||||
|
site: solidtorrents
|
||||||
|
name: SolidTorrents
|
||||||
|
description: "SolidTorrents is a Public torrent meta-search engine"
|
||||||
|
language: en-us
|
||||||
|
type: public
|
||||||
|
encoding: UTF-8
|
||||||
|
links:
|
||||||
|
- https://solidtorrents.net/
|
||||||
|
|
||||||
|
caps:
|
||||||
|
categories:
|
||||||
|
"Audio": Audio
|
||||||
|
"Video": Movies
|
||||||
|
"Image": Other/Misc
|
||||||
|
"Document": Books/Comics
|
||||||
|
"eBook": Books/Ebook
|
||||||
|
"Program": PC/0day
|
||||||
|
"Android": PC/Phone-Android
|
||||||
|
"Archive": Other
|
||||||
|
"Diskimage": PC/ISO
|
||||||
|
"Sourcecode": Movies/Other
|
||||||
|
"Database": Movie/DVD
|
||||||
|
"Unknown": Other
|
||||||
|
|
||||||
|
modes:
|
||||||
|
search: [q]
|
||||||
|
tv-search: [q, season, ep]
|
||||||
|
movie-search: [q]
|
||||||
|
|
||||||
|
settings: []
|
||||||
|
|
||||||
|
search:
|
||||||
|
paths:
|
||||||
|
# https://solidtorrents.net/search?q=gotham%20s05e02&sort=date&category=all
|
||||||
|
- path: "search?q={{.Keywords}}&sort=date&category=all"
|
||||||
|
rows:
|
||||||
|
selector: div[role="listitem"]:has(a[href^="magnet:?xt="])
|
||||||
|
fields:
|
||||||
|
title:
|
||||||
|
selector: div[class$="__title"] h3
|
||||||
|
details:
|
||||||
|
selector: div[class$="__title"] a
|
||||||
|
attribute: href
|
||||||
|
download:
|
||||||
|
selector: a[href^="magnet:?xt="]
|
||||||
|
attribute: href
|
||||||
|
category:
|
||||||
|
selector: div.v-list__tile__content div:nth-of-type(2)
|
||||||
|
filters:
|
||||||
|
- name: regexp
|
||||||
|
args: "(.+?) \\|"
|
||||||
|
date:
|
||||||
|
selector: div.v-list__tile__content div:nth-of-type(2)
|
||||||
|
filters:
|
||||||
|
- name: replace
|
||||||
|
args: ["a few", "1"]
|
||||||
|
- name: replace
|
||||||
|
args: ["an ", "1 "]
|
||||||
|
- name: replace
|
||||||
|
args: ["a ", "1 "]
|
||||||
|
- name: regexp
|
||||||
|
args: "(\\d+ \\w+ \\w+)"
|
||||||
|
seeders:
|
||||||
|
selector: div.v-list__tile__content div:nth-of-type(3) span:nth-child(1)
|
||||||
|
leechers:
|
||||||
|
selector: div.v-list__tile__content div:nth-of-type(3) span:nth-child(2)
|
||||||
|
size:
|
||||||
|
selector: div.v-list__tile__content div:nth-of-type(3)
|
||||||
|
remove: span
|
||||||
|
downloadvolumefactor:
|
||||||
|
text: "0"
|
||||||
|
uploadvolumefactor:
|
||||||
|
text: "1"
|
Loading…
Reference in a new issue