mirror of
https://github.com/Jackett/Jackett
synced 2025-03-04 10:48:26 +00:00
add kickasstorrents.to a public KAT clone resolves #9966
This commit is contained in:
parent
03246ce62a
commit
903266844a
2 changed files with 93 additions and 0 deletions
|
@ -72,6 +72,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* iTorrent
|
||||
* KickAssTorrent (kat.li)
|
||||
* KickAssTorrent (KATcr)
|
||||
* kickasstorrents.to
|
||||
* Legit Torrents
|
||||
* LePorno.info
|
||||
* LimeTorrents
|
||||
|
|
92
src/Jackett.Common/Definitions/kickasstorrents-to.yml
Normal file
92
src/Jackett.Common/Definitions/kickasstorrents-to.yml
Normal file
|
@ -0,0 +1,92 @@
|
|||
---
|
||||
id: kickasstorrents-to
|
||||
name: kickssstorrents.to
|
||||
description: "kickasstorrents.to is a Public KickAssTorrent clone for TV / MOVIES / GENERAL"
|
||||
language: en-us
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://kickasstorrents.to/
|
||||
|
||||
caps:
|
||||
categories:
|
||||
anime: TV/Anime
|
||||
apps: PC
|
||||
books: Books
|
||||
documentaries: TV/Documentary
|
||||
games: Console
|
||||
movies: Movies
|
||||
music: Audio
|
||||
other: Other
|
||||
tv: TV
|
||||
xxx: XXX
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
tv-search: [q, season, ep]
|
||||
movie-search: [q]
|
||||
music-search: [q]
|
||||
book-search: [q]
|
||||
|
||||
settings:
|
||||
- name: sort
|
||||
type: select
|
||||
label: Sort requested from site
|
||||
default: time
|
||||
options:
|
||||
time: created
|
||||
seeders: seeders
|
||||
size: size
|
||||
- name: type
|
||||
type: select
|
||||
label: Order requested from site
|
||||
default: desc
|
||||
options:
|
||||
desc: desc
|
||||
asc: asc
|
||||
|
||||
download:
|
||||
selector: a[href^="magnet:?xt="]
|
||||
attribute: href
|
||||
|
||||
search:
|
||||
paths:
|
||||
- path: "{{ if .Keywords }}usearch/{{ .Keywords }}/{{else}}new/{{end}}?sortby={{ .Config.sort }}&sort={{ .Config.type }}"
|
||||
|
||||
rows:
|
||||
selector: table.data tr.odd, table.data tr.even
|
||||
|
||||
fields:
|
||||
category:
|
||||
selector: span > strong > a
|
||||
attribute: href
|
||||
filters:
|
||||
- name: tolower
|
||||
- name: trim
|
||||
args: /
|
||||
title:
|
||||
selector: a[class="cellMainLink"]
|
||||
details:
|
||||
selector: a[class="cellMainLink"]
|
||||
attribute: href
|
||||
download:
|
||||
selector: a[class="cellMainLink"]
|
||||
attribute: href
|
||||
size:
|
||||
selector: td:nth-child(2)
|
||||
date:
|
||||
selector: td:nth-child(4)
|
||||
attribute: title
|
||||
filters:
|
||||
- name: replace
|
||||
args: ["<br/>", " "]
|
||||
- name: timeago
|
||||
seeders:
|
||||
selector: td:nth-child(5)
|
||||
leechers:
|
||||
selector: td:nth-child(6)
|
||||
downloadvolumefactor:
|
||||
text: 0
|
||||
uploadvolumefactor:
|
||||
text: 1
|
||||
# engine n/a
|
Loading…
Add table
Reference in a new issue