mirror of
https://github.com/Jackett/Jackett
synced 2024-12-26 17:58:49 +00:00
add bteye a public dht crawler. resolves #7247
This commit is contained in:
parent
a8ba61fc9d
commit
e407067c8b
2 changed files with 69 additions and 0 deletions
|
@ -39,6 +39,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* BitTorrent.AM
|
||||
* BTDB
|
||||
* BTDIGG
|
||||
* BTeye
|
||||
* BT.etree
|
||||
* BTSOW
|
||||
* Cili180
|
||||
|
|
68
src/Jackett.Common/Definitions/bteye.yml
Normal file
68
src/Jackett.Common/Definitions/bteye.yml
Normal file
|
@ -0,0 +1,68 @@
|
|||
---
|
||||
site: bteye
|
||||
name: BTeye
|
||||
description: "BTeye is a Public BitTorrent DHT search engine."
|
||||
language: en-us
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://www.bteye.org/
|
||||
|
||||
caps:
|
||||
categories:
|
||||
1: Other
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
tv-search: [q, season, ep]
|
||||
movie-search: [q]
|
||||
|
||||
settings:
|
||||
- name: info
|
||||
type: info
|
||||
default: BTeye does not use categories. In your software Indexer settings, set the category to 100001.
|
||||
|
||||
download:
|
||||
selector: a[href^="magnet:?xt="]
|
||||
attribute: href
|
||||
|
||||
search:
|
||||
# https://www.bteye.org/q/2020
|
||||
paths:
|
||||
- path: "q/{{ if .Keywords }}{{ .Keywords }}{{else}}2020{{end}}"
|
||||
|
||||
rows:
|
||||
selector: div.plist
|
||||
filters:
|
||||
- name: andmatch
|
||||
|
||||
fields:
|
||||
category:
|
||||
text: 1
|
||||
title:
|
||||
selector: div.pname a
|
||||
attribute: title
|
||||
details:
|
||||
selector: div.pname a
|
||||
attribute: href
|
||||
download:
|
||||
selector: div.pname a
|
||||
attribute: href
|
||||
date:
|
||||
selector: div.plink b:nth-of-type(3)
|
||||
filters:
|
||||
- name: dateparse
|
||||
args: "2006-01-02"
|
||||
files:
|
||||
selector: div.plink b:nth-of-type(2)
|
||||
size:
|
||||
selector: div.plink b:nth-of-type(1)
|
||||
seeders:
|
||||
text: 1
|
||||
leechers:
|
||||
text: 1
|
||||
downloadvolumefactor:
|
||||
text: 0
|
||||
uploadvolumefactor:
|
||||
text: 1
|
||||
# engine n/a
|
Loading…
Reference in a new issue