mirror of
https://github.com/Jackett/Jackett
synced 2025-02-22 06:10:49 +00:00
add torrentdownload, a public tracker. resolves #6451
This commit is contained in:
parent
7882fb5699
commit
46cb027261
2 changed files with 71 additions and 0 deletions
|
@ -96,6 +96,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
||||||
* Torrent Downloads (TD)
|
* Torrent Downloads (TD)
|
||||||
* Torrent9
|
* Torrent9
|
||||||
* Torrent9Clone
|
* Torrent9Clone
|
||||||
|
* TorrentDownload
|
||||||
* TorrentFunk
|
* TorrentFunk
|
||||||
* TorrentGalaxy (TGx)
|
* TorrentGalaxy (TGx)
|
||||||
* TorrentParadise
|
* TorrentParadise
|
||||||
|
|
70
src/Jackett.Common/Definitions/torrentdownload.yml
Normal file
70
src/Jackett.Common/Definitions/torrentdownload.yml
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
---
|
||||||
|
site: torrentdownload
|
||||||
|
name: TorrentDownload
|
||||||
|
description: "TorrentDownload is a Public general torrent index"
|
||||||
|
language: en-us
|
||||||
|
type: public
|
||||||
|
encoding: UTF-8
|
||||||
|
links:
|
||||||
|
- https://www.torrentdownload.info/
|
||||||
|
|
||||||
|
caps:
|
||||||
|
categories:
|
||||||
|
"TV shows": TV
|
||||||
|
"Movies": Movies
|
||||||
|
"Music": Audio
|
||||||
|
"Games": Console
|
||||||
|
"Applications": PC/0day
|
||||||
|
"Other": Other/Misc
|
||||||
|
"Anime": TV/Anime
|
||||||
|
"Audio Books": Audio/Audiobook
|
||||||
|
|
||||||
|
modes:
|
||||||
|
search: [q]
|
||||||
|
tv-search: [q, season, ep]
|
||||||
|
movie-search: [q]
|
||||||
|
|
||||||
|
settings: []
|
||||||
|
|
||||||
|
download:
|
||||||
|
selector: a[href^="magnet:?xt="]
|
||||||
|
|
||||||
|
search:
|
||||||
|
paths:
|
||||||
|
- path: "{{if .Keywords}}searchd?q={{ .Keywords}}{{else}}latest{{end}}"
|
||||||
|
rows:
|
||||||
|
selector: table.table2 > tbody > tr:has(span.smallish)
|
||||||
|
fields:
|
||||||
|
title:
|
||||||
|
selector: div.tt-name > a[href^="/"]
|
||||||
|
details:
|
||||||
|
selector: div.tt-name > a[href^="/"]
|
||||||
|
attribute: href
|
||||||
|
size:
|
||||||
|
selector: td:nth-child(3)
|
||||||
|
seeders:
|
||||||
|
selector: td.tdseed
|
||||||
|
leechers:
|
||||||
|
selector: td.tdleech
|
||||||
|
date:
|
||||||
|
selector: td:nth-child(2)
|
||||||
|
filters:
|
||||||
|
- name: replace
|
||||||
|
args: ["right ", ""]
|
||||||
|
- name: replace
|
||||||
|
args: ["Last Month", "1 month ago"]
|
||||||
|
- name: replace
|
||||||
|
args: ["+", " ago"]
|
||||||
|
download:
|
||||||
|
selector: div.tt-name > a[href^="/"]
|
||||||
|
attribute: href
|
||||||
|
category:
|
||||||
|
selector: div.tt-name > span.smallish
|
||||||
|
optional: true
|
||||||
|
filters:
|
||||||
|
- name: replace
|
||||||
|
args: ["» ", ""]
|
||||||
|
downloadvolumefactor:
|
||||||
|
text: 0
|
||||||
|
uploadvolumefactor:
|
||||||
|
text: 1
|
Loading…
Reference in a new issue