mirror of
https://github.com/Jackett/Jackett
synced 2025-01-01 04:38:20 +00:00
add Seedpeer a public indexer. resolves #6450
This commit is contained in:
parent
226fdfd03c
commit
c24956d793
2 changed files with 57 additions and 0 deletions
|
@ -83,6 +83,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* RARBG
|
||||
* Rus-media
|
||||
* RuTor
|
||||
* Seedpeer
|
||||
* shokweb
|
||||
* ShowRSS
|
||||
* SkyTorrentsClone
|
||||
|
|
56
src/Jackett.Common/Definitions/seedpeer.yml
Normal file
56
src/Jackett.Common/Definitions/seedpeer.yml
Normal file
|
@ -0,0 +1,56 @@
|
|||
---
|
||||
site: seedpeer
|
||||
name: Seedpeer
|
||||
description: "Seedpeer is a Public torrent index"
|
||||
language: en-us
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://seedpeer.me/
|
||||
|
||||
caps:
|
||||
categories:
|
||||
"other": Other
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
tv-search: [q, season, ep]
|
||||
movie-search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
download:
|
||||
selector: a[href*="/torrent/"]
|
||||
|
||||
search:
|
||||
# https://seedpeer.me/today
|
||||
# https://seedpeer.me/search/Harry%20Potter
|
||||
paths:
|
||||
- path: "{{if .Keywords}}search/{{ .Keywords}}{{else}}today{{end}}"
|
||||
rows:
|
||||
selector: table.table > tbody > tr:has(a[href^="/details/"])
|
||||
fields:
|
||||
category:
|
||||
text: other
|
||||
title:
|
||||
selector: td:nth-child(1) a
|
||||
details:
|
||||
selector: td:nth-child(1) a
|
||||
attribute: href
|
||||
download:
|
||||
selector: td:nth-child(1) a
|
||||
attribute: href
|
||||
date:
|
||||
selector: td:nth-child(2)
|
||||
filters:
|
||||
- name: timeago
|
||||
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