mirror of
https://github.com/Jackett/Jackett
synced 2025-01-01 12:46:23 +00:00
add toros a public tracker. resolves #6497
This commit is contained in:
parent
d275971101
commit
32a7cc5cac
2 changed files with 83 additions and 0 deletions
|
@ -93,6 +93,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* The Pirate Bay (TPB)
|
||||
* Tokyo Tosho
|
||||
* Torlock
|
||||
* TOROS
|
||||
* Torrent Downloads (TD)
|
||||
* Torrent9
|
||||
* Torrent9Clone
|
||||
|
|
82
src/Jackett.Common/Definitions/toros.yml
Normal file
82
src/Jackett.Common/Definitions/toros.yml
Normal file
|
@ -0,0 +1,82 @@
|
|||
---
|
||||
site: toros
|
||||
name: TOROS
|
||||
description: "TOROS is a Public torrent index"
|
||||
language: en-us
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://www.toros.co/
|
||||
|
||||
caps:
|
||||
categories:
|
||||
1: Movies
|
||||
2: Audio
|
||||
3: TV
|
||||
4: PC/Games
|
||||
5: PC
|
||||
6: TV/Anime
|
||||
7: XXX
|
||||
8: Books
|
||||
10: Other
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
tv-search: [q, season, ep]
|
||||
movie-search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
download:
|
||||
selector: a[href^="magnet:?xt="]
|
||||
|
||||
search:
|
||||
paths:
|
||||
# https://www.toros.co/all/torrents/capital-hill.html?v=&smi=&sma=&i=100&sort=added&o=desc
|
||||
- path: "{{if .Keywords}}all/torrents/{{ re_replace .Keywords \"[\\s]+\" \"-\" }}.html?v=&smi=&sma=&i=100&sort=added&o=desc{{else}}top100.html{{end}}"
|
||||
rows:
|
||||
selector: table.table-responsive tr:has(a[href^="/torrent/"])
|
||||
filters:
|
||||
- name: andmatch
|
||||
|
||||
fields:
|
||||
category:
|
||||
selector: td:nth-child(1)
|
||||
attribute: class
|
||||
filters:
|
||||
- name: regexp
|
||||
args: (\d+)
|
||||
title:
|
||||
selector: a[href^="/torrent/"]
|
||||
details:
|
||||
selector: a[href^="/torrent/"]
|
||||
attribute: href
|
||||
download:
|
||||
selector: a[href^="/torrent/"]
|
||||
attribute: href
|
||||
date:
|
||||
selector: td:nth-child(2):contains("Yesterday"), td:nth-child(2):contains("Today")
|
||||
optional: true
|
||||
filters:
|
||||
- name: fuzzytime
|
||||
date:
|
||||
selector: td:nth-child(2):contains("ago")
|
||||
optional: true
|
||||
filters:
|
||||
- name: timeago
|
||||
date:
|
||||
selector: td:nth-child(2):not(:contains("ago")):not(:contains("Yesterday")):not(:contains("Today"))
|
||||
optional: true
|
||||
filters:
|
||||
- name: dateparse
|
||||
args: "2 Jan"
|
||||
size:
|
||||
selector: td:nth-child(3)
|
||||
seeders:
|
||||
selector: td:nth-child(4)
|
||||
leechers:
|
||||
selector: td:nth-child(5)
|
||||
downloadvolumefactor:
|
||||
text: 0
|
||||
uploadvolumefactor:
|
||||
text: 1
|
Loading…
Reference in a new issue