mirror of
https://github.com/Jackett/Jackett
synced 2025-03-10 06:03:09 +00:00
add epizod a French public site. resolves #8200
This commit is contained in:
parent
e7454772fb
commit
183fb11621
2 changed files with 89 additions and 0 deletions
|
@ -49,6 +49,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* Demonoid
|
||||
* dmhy
|
||||
* EliteTorrent.biz
|
||||
* Epizod
|
||||
* EstrenosDTL
|
||||
* ETTV
|
||||
* EXT Torrents
|
||||
|
|
88
src/Jackett.Common/Definitions/epizod.yml
Normal file
88
src/Jackett.Common/Definitions/epizod.yml
Normal file
|
@ -0,0 +1,88 @@
|
|||
---
|
||||
site: epizod
|
||||
name: Epizod
|
||||
description: "Epizod is a FRENCH Public tracker for MOVIES / TV"
|
||||
language: fr-FR
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://www.epizod.tv/
|
||||
|
||||
caps:
|
||||
categories:
|
||||
series: TV
|
||||
films: Movies
|
||||
other: Other
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
tv-search: [q, season, ep]
|
||||
movie-search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
download:
|
||||
selector: a[href^="magnet:?xt="]
|
||||
attribute: href
|
||||
|
||||
search:
|
||||
paths:
|
||||
# https://www.epizod.tv/?s=
|
||||
- path: /
|
||||
inputs:
|
||||
s: "{{ .Keywords }}"
|
||||
|
||||
rows:
|
||||
selector: article
|
||||
|
||||
fields:
|
||||
category:
|
||||
text: other
|
||||
category|noappend:
|
||||
selector: a[href*="/category/"]
|
||||
attribute: href
|
||||
optional: true
|
||||
filters:
|
||||
- name: split
|
||||
args: ["/", 4]
|
||||
title:
|
||||
selector: div.post-cover > a
|
||||
attribute: title
|
||||
details:
|
||||
selector: div.post-cover > a
|
||||
attribute: href
|
||||
download:
|
||||
selector: div.post-cover > a
|
||||
attribute: href
|
||||
banner:
|
||||
selector: img[data-lazy-src]
|
||||
attribute: data-lazy-src
|
||||
date:
|
||||
selector: time
|
||||
attribute: datetime
|
||||
filters:
|
||||
- name: replace
|
||||
args: ["T", " "]
|
||||
- name: dateparse
|
||||
args: "2006-01-02 15:04:05-07:00"
|
||||
cat:
|
||||
text: other
|
||||
cat:
|
||||
selector: a[href*="/category/"]
|
||||
attribute: href
|
||||
optional: true
|
||||
filters:
|
||||
- name: split
|
||||
args: ["/", 4]
|
||||
size:
|
||||
# text: "512 MB"
|
||||
text: "{{ if eq .Result.cat \"series\" }}512 MB{{else}}2 GB{{end}}"
|
||||
seeders:
|
||||
text: 1
|
||||
leechers:
|
||||
text: 1
|
||||
downloadvolumefactor:
|
||||
text: 0
|
||||
uploadvolumefactor:
|
||||
text: 1
|
||||
# engine n/a
|
Loading…
Add table
Reference in a new issue