mirror of
https://github.com/Jackett/Jackett
synced 2025-01-01 04:38:20 +00:00
add bittirrent.AM a public tracker. resolves #6452
This commit is contained in:
parent
c15be19bff
commit
6bf0f4a446
2 changed files with 69 additions and 0 deletions
|
@ -30,6 +30,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* AudioBook Bay (ABB)
|
||||
* BigFANGroup
|
||||
* BitRu
|
||||
* BitTorrent.AM
|
||||
* BTDB
|
||||
* BTDIGG
|
||||
* BT.etree
|
||||
|
|
68
src/Jackett.Common/Definitions/bittorrentam.yml
Normal file
68
src/Jackett.Common/Definitions/bittorrentam.yml
Normal file
|
@ -0,0 +1,68 @@
|
|||
---
|
||||
site: bittorrentam
|
||||
name: Bittorrent.AM
|
||||
description: "Bittorrent.AM is a Public torrent index"
|
||||
language: en-us
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- http://www.bittorrent.am/
|
||||
|
||||
caps:
|
||||
categorymappings:
|
||||
- {id: 0, cat: XXX, desc: "Adult"}
|
||||
- {id: 1, cat: TV/Anime, desc: "Anime / Hentai"}
|
||||
- {id: 2, cat: PC, desc: "Apps"}
|
||||
- {id: 3, cat: Console, desc: "Games"}
|
||||
- {id: 4, cat: Movies, desc: "Movies"}
|
||||
- {id: 5, cat: Audio, desc: "Music"}
|
||||
- {id: 6, cat: Other, desc: "Other"}
|
||||
- {id: 7, cat: TV, desc: "Series / TV Shows"}
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
tv-search: [q, season, ep]
|
||||
movie-search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
download:
|
||||
selector: a[ href^="magnet:?xt="]
|
||||
|
||||
search:
|
||||
paths:
|
||||
- path: "{{if .Keywords}}search.php?kwds={{ .Keywords}}{{else}}/{{end}}"
|
||||
rows:
|
||||
selector: table.torrentsTable:has(tr.r) tbody tr.r
|
||||
fields:
|
||||
category:
|
||||
text: 6
|
||||
title:
|
||||
selector: td:nth-child(3) a
|
||||
details:
|
||||
selector: td:nth-child(3) a
|
||||
attribute: href
|
||||
download:
|
||||
selector: td:nth-child(3) a
|
||||
attribute: href
|
||||
date:
|
||||
selector: td:nth-child(1)
|
||||
filters:
|
||||
- name: dateparse
|
||||
args: "02 Jan 2006"
|
||||
size:
|
||||
selector: td:nth-child(4)
|
||||
seeders:
|
||||
selector: td:nth-child(5)
|
||||
filters:
|
||||
- name: replace
|
||||
args: ["-", "1"]
|
||||
leechers:
|
||||
selector: td:nth-child(6)
|
||||
filters:
|
||||
- name: replace
|
||||
args: ["-", "0"]
|
||||
downloadvolumefactor:
|
||||
text: 0
|
||||
uploadvolumefactor:
|
||||
text: 1
|
Loading…
Reference in a new issue