mirror of
https://github.com/Jackett/Jackett
synced 2025-02-22 14:20:57 +00:00
torrentcouch: added this public tv tracker. resolves #3797
this site sucks. the search results contain just the title and details link, no files, seeders, date or other useful details. and despite search results specifying 720p for example, the details page contains download links for any related quality of the show, its pot luck which is the first link, it might be SD, 720p, .torrent or magnet, or antyhing else for that matter. the site is not really suitable for jackett but ive added it for those that want to use it.
This commit is contained in:
parent
77b1da3089
commit
796947fd6f
2 changed files with 57 additions and 0 deletions
|
@ -60,6 +60,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* TNTVillage <!-- maintained by bonny1992 -->
|
||||
* Tokyo Toshokan
|
||||
* Torlock
|
||||
* TorrentCouch
|
||||
* Torrent Downloads
|
||||
* TorrentGalaxy.org (TGx)
|
||||
* Torrent9
|
||||
|
|
56
src/Jackett.Common/Definitions/torrentcouch.yml
Normal file
56
src/Jackett.Common/Definitions/torrentcouch.yml
Normal file
|
@ -0,0 +1,56 @@
|
|||
---
|
||||
site: torrentcouch
|
||||
name: TorrentCouch
|
||||
description: "TorrentCounch is a Public TV tracker"
|
||||
language: en-us
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://torrentcouch.com/
|
||||
|
||||
caps:
|
||||
categorymappings:
|
||||
- {id: 1, cat: TV, desc: "TV"}
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
tv-search: [q, season, ep]
|
||||
|
||||
settings: []
|
||||
|
||||
download:
|
||||
selector: tr td a[href*="/files/download/"]
|
||||
|
||||
search:
|
||||
# https://torrentcouch.com/?s=expanse
|
||||
paths:
|
||||
- path: /
|
||||
inputs:
|
||||
s: "{{.Keywords}}"
|
||||
rows:
|
||||
selector: article
|
||||
fields:
|
||||
title:
|
||||
selector: h2 a
|
||||
category:
|
||||
text: "1"
|
||||
details:
|
||||
selector: h2 a
|
||||
attribute: href
|
||||
description:
|
||||
selector: p
|
||||
download:
|
||||
selector: h2 a
|
||||
attribute: href
|
||||
size:
|
||||
text: "500 MB"
|
||||
seeders:
|
||||
text: "999"
|
||||
leechers:
|
||||
text: "999"
|
||||
date:
|
||||
text: now
|
||||
downloadvolumefactor:
|
||||
text: "0"
|
||||
uploadvolumefactor:
|
||||
text: "1"
|
Loading…
Reference in a new issue