mirror of
https://github.com/Jackett/Jackett
synced 2025-01-03 13:46:10 +00:00
Co-authored-by: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com>
This commit is contained in:
parent
7fbb6efa87
commit
3d89f33ee7
2 changed files with 68 additions and 0 deletions
|
@ -37,6 +37,7 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
|
|||
* AudioBook Bay (ABB)
|
||||
* Badass Torrents
|
||||
* Bangumi Moe
|
||||
* BiatchTorrents
|
||||
* BigFANGroup
|
||||
* BitRu
|
||||
* BitSearch
|
||||
|
|
67
src/Jackett.Common/Definitions/biatch.yml
Normal file
67
src/Jackett.Common/Definitions/biatch.yml
Normal file
|
@ -0,0 +1,67 @@
|
|||
---
|
||||
id: biatch
|
||||
name: BiatchTorrents
|
||||
description: "BiatchTorrents is a FRENCH Public torrent site for MOVIES / TV / GENERAL"
|
||||
type: public
|
||||
language: fr-FR
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://biat.ch/
|
||||
|
||||
caps:
|
||||
categories:
|
||||
Other: Other
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
search:
|
||||
paths:
|
||||
- path: search
|
||||
method: get
|
||||
response:
|
||||
type: json
|
||||
|
||||
inputs:
|
||||
$raw: "format=json&q={{ .Keywords }}"
|
||||
keywordsfilters:
|
||||
# ignore ' (e.g. search for america's Next Top Model)
|
||||
- name: re_replace
|
||||
args: ["[^\\w]+", ""]
|
||||
|
||||
rows:
|
||||
selector: $
|
||||
|
||||
fields:
|
||||
_id:
|
||||
selector: id
|
||||
category:
|
||||
text: Other
|
||||
title:
|
||||
selector: name
|
||||
details:
|
||||
text: "{{ .Config.sitelink }}"
|
||||
download:
|
||||
text: "download?id={{ .Result._id }}"
|
||||
infohash:
|
||||
text: "{{ .Result._id }}"
|
||||
date:
|
||||
selector: date
|
||||
size:
|
||||
selector: size
|
||||
filters:
|
||||
- name: re_replace
|
||||
args: ["(\\w)o", "$1B"]
|
||||
grabs:
|
||||
selector: completed
|
||||
seeders:
|
||||
selector: seeders
|
||||
leechers:
|
||||
selector: leechers
|
||||
downloadvolumefactor:
|
||||
text: 0
|
||||
uploadvolumefactor:
|
||||
text: 1
|
||||
# json engine n/a
|
Loading…
Reference in a new issue