mirror of
https://github.com/Jackett/Jackett
synced 2025-01-03 13:46:10 +00:00
add nipponsei a Japanese public audio site. resolves #7894
This commit is contained in:
parent
bd8c0bfafe
commit
7b09f07c6c
2 changed files with 69 additions and 0 deletions
|
@ -92,6 +92,7 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
|
|||
* NewPCT (aka: tvsinpagar, descargas2020, torrentlocura, torrentrapid, tumejortorrent, pctnew, etc)
|
||||
* NewPCT.me
|
||||
* Newstudio
|
||||
* Nipponsei
|
||||
* Nitro
|
||||
* NNTT
|
||||
* NoNaMe Club (NNM-Club)
|
||||
|
|
68
src/Jackett.Common/Definitions/nipponsei.yml
Normal file
68
src/Jackett.Common/Definitions/nipponsei.yml
Normal file
|
@ -0,0 +1,68 @@
|
|||
---
|
||||
id: nipponsei
|
||||
name: Nipponsei
|
||||
description: "Nipponsei is a Public site for MUSIC fresh from Japan"
|
||||
language: en-US
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://nipponsei.minglong.org/
|
||||
|
||||
caps:
|
||||
categorymappings:
|
||||
- {id: music, cat: Audio, desc: Music}
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
music-search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
search:
|
||||
# https://nipponsei.minglong.org/index.php?section=Tracker&search=Kanojo+mo+Kanojo+ED+Single
|
||||
paths:
|
||||
- path: index.php
|
||||
inputs:
|
||||
section: Tracker
|
||||
search: "{{ .Keywords }}"
|
||||
|
||||
rows:
|
||||
selector: tr.odd, tr.even
|
||||
|
||||
fields:
|
||||
category:
|
||||
text: music
|
||||
title:
|
||||
selector: a
|
||||
filters:
|
||||
- name: replace
|
||||
args: ["[Nipponsei] ", ""]
|
||||
details:
|
||||
text: "{{ .Config.sitelink }}"
|
||||
download:
|
||||
selector: a
|
||||
attribute: href
|
||||
date:
|
||||
text: now
|
||||
date:
|
||||
optional: true
|
||||
selector: td.date
|
||||
filters:
|
||||
- name: dateparse
|
||||
args: "2006-01-02 15:04"
|
||||
size:
|
||||
text: "128 MB"
|
||||
size:
|
||||
optional: true
|
||||
selector: td.bytes
|
||||
seeders:
|
||||
selector: "{{ if .Keywords }}td:nth-child(2){{ else }}td:nth-child(4){{ end }}"
|
||||
leechers:
|
||||
selector: "{{ if .Keywords }}td:nth-child(3){{ else }}td:nth-child(5){{ end }}"
|
||||
grabs:
|
||||
selector: td.number
|
||||
downloadvolumefactor:
|
||||
text: 0
|
||||
uploadvolumefactor:
|
||||
text: 1
|
||||
# engine n/a
|
Loading…
Reference in a new issue