mirror of
https://github.com/Jackett/Jackett
synced 2025-01-31 20:02:08 +00:00
add torrentkitty a public magnet tracker. resolves #6833
This commit is contained in:
parent
48515cf3b9
commit
3ccefe33b3
3 changed files with 56 additions and 1 deletions
|
@ -103,6 +103,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* TorrentDownload
|
||||
* TorrentFunk
|
||||
* TorrentGalaxy (TGx)
|
||||
* TorrentKitty
|
||||
* TorrentParadise
|
||||
* TorrentProject2
|
||||
* TorrentQuest
|
||||
|
|
55
src/Jackett.Common/Definitions/torrentkitty.yml
Normal file
55
src/Jackett.Common/Definitions/torrentkitty.yml
Normal file
|
@ -0,0 +1,55 @@
|
|||
---
|
||||
site: torrentkitty
|
||||
name: TorrentKitty
|
||||
description: "TorrentKitty is a Public torrent indexer"
|
||||
language: en-us
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://www.torrentkitty.tv/
|
||||
- https://www.torrentkitty.se/
|
||||
- https://www.torrentkitty.app/
|
||||
|
||||
caps:
|
||||
categories:
|
||||
"other": Other
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
tv-search: [q, season, ep]
|
||||
movie-search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
search:
|
||||
paths:
|
||||
- path: "search/{{ if .Keywords }}{{ .Keywords}}{{else}}2019{{end}}"
|
||||
rows:
|
||||
selector: table#archiveResult tbody tr:has(a[href^="magnet:?xt="])
|
||||
|
||||
fields:
|
||||
category:
|
||||
text: other
|
||||
title:
|
||||
selector: td.name
|
||||
details:
|
||||
selector: td.action a
|
||||
attribute: href
|
||||
download:
|
||||
selector: a[href^="magnet:?xt="]
|
||||
attribute: href
|
||||
date:
|
||||
selector: td.date
|
||||
filters:
|
||||
- name: dateparse
|
||||
args: "2006-01-02"
|
||||
size:
|
||||
selector: td.size
|
||||
seeders:
|
||||
text: 1
|
||||
leechers:
|
||||
text: 1
|
||||
downloadvolumefactor:
|
||||
text: 0
|
||||
uploadvolumefactor:
|
||||
text: 1
|
|
@ -352,7 +352,6 @@ namespace Jackett.Updater
|
|||
"Definitions/xktorrent.yml",
|
||||
"Definitions/btkitty.yml",
|
||||
"Definitions/kikibt.yml",
|
||||
"Definitions/torrentkitty.yml",
|
||||
"Definitions/rockethd.yml",
|
||||
"Definitions/worldofp2p.yml",
|
||||
"Definitions/avg.yml",
|
||||
|
|
Loading…
Reference in a new issue