mirror of
https://github.com/Jackett/Jackett
synced 2024-12-27 10:18:55 +00:00
add torrentv a public movie site. resolves #7575
This commit is contained in:
parent
733494a8a3
commit
96d23ca19a
2 changed files with 88 additions and 0 deletions
|
@ -134,6 +134,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
||||||
* TorrentRex
|
* TorrentRex
|
||||||
* TorrentQuest
|
* TorrentQuest
|
||||||
* Torrents.csv
|
* Torrents.csv
|
||||||
|
* Torrentv
|
||||||
* TorrentView
|
* TorrentView
|
||||||
* TorrentWal
|
* TorrentWal
|
||||||
* Torrentz2
|
* Torrentz2
|
||||||
|
|
87
src/Jackett.Common/Definitions/torrentv.yml
Normal file
87
src/Jackett.Common/Definitions/torrentv.yml
Normal file
|
@ -0,0 +1,87 @@
|
||||||
|
---
|
||||||
|
site: torrentv
|
||||||
|
name: Torrentv
|
||||||
|
description: "Torrentv is a Public tracker for MOVIES"
|
||||||
|
language: en-us
|
||||||
|
type: public
|
||||||
|
encoding: UTF-8
|
||||||
|
links:
|
||||||
|
- https://torrentv.org/
|
||||||
|
|
||||||
|
caps:
|
||||||
|
categories:
|
||||||
|
1: Movies
|
||||||
|
|
||||||
|
modes:
|
||||||
|
search: [q]
|
||||||
|
movie-search: [q]
|
||||||
|
|
||||||
|
settings:
|
||||||
|
- name: sort
|
||||||
|
type: select
|
||||||
|
label: Sort requested from site (Applies only to Keyword searches)
|
||||||
|
default: "td-1"
|
||||||
|
options:
|
||||||
|
"td-1": "created"
|
||||||
|
"s-1": "seeders"
|
||||||
|
"na-1": "title"
|
||||||
|
|
||||||
|
download:
|
||||||
|
selector: a[href^="magnet:?xt="]
|
||||||
|
attribute: href
|
||||||
|
|
||||||
|
search:
|
||||||
|
paths:
|
||||||
|
- path: "{{ if .Keywords }}search/{{ .Keywords }}/{{ .Config.sort }}/{{else}}new.html{{end}}"
|
||||||
|
|
||||||
|
rows:
|
||||||
|
selector: div.grid_4
|
||||||
|
|
||||||
|
fields:
|
||||||
|
category:
|
||||||
|
text: 1
|
||||||
|
title:
|
||||||
|
selector: h3 a
|
||||||
|
details:
|
||||||
|
selector: h3 a
|
||||||
|
attribute: href
|
||||||
|
download:
|
||||||
|
selector: h3 a
|
||||||
|
attribute: href
|
||||||
|
banner:
|
||||||
|
selector: img[src^="/pic/"]
|
||||||
|
attribute: src
|
||||||
|
subcat:
|
||||||
|
selector: div.box ul li:first-child
|
||||||
|
year:
|
||||||
|
selector: div.box ul li:contains("Year:")
|
||||||
|
quality:
|
||||||
|
selector: div.box ul li:contains("Quality:")
|
||||||
|
description:
|
||||||
|
text: "{{ .Result.subcat }} {{ .Result.year }} {{ .Result.quality }}"
|
||||||
|
date:
|
||||||
|
text: now
|
||||||
|
size:
|
||||||
|
selector: div.box ul li:contains("Size:")
|
||||||
|
filters:
|
||||||
|
- name: replace
|
||||||
|
args: ["Size:", ""]
|
||||||
|
seeders:
|
||||||
|
selector: div.box ul li:contains("Seed/DL:")
|
||||||
|
filters:
|
||||||
|
- name: replace
|
||||||
|
args: ["Seed/DL:", ""]
|
||||||
|
- name: split
|
||||||
|
args: ["/", 0]
|
||||||
|
leechers:
|
||||||
|
selector: div.box ul li:contains("Seed/DL:")
|
||||||
|
filters:
|
||||||
|
- name: replace
|
||||||
|
args: ["Seed/DL:", ""]
|
||||||
|
- name: split
|
||||||
|
args: ["/", 1]
|
||||||
|
downloadvolumefactor:
|
||||||
|
text: 0
|
||||||
|
uploadvolumefactor:
|
||||||
|
text: 1
|
||||||
|
# engine n/a
|
Loading…
Reference in a new issue