mirror of
https://github.com/Jackett/Jackett
synced 2025-03-10 14:14:25 +00:00
add 7torrents a public dht crawler. resolves #7098
This commit is contained in:
parent
2f724b4de0
commit
1bf05e3934
2 changed files with 78 additions and 0 deletions
|
@ -26,6 +26,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
||||||
<details> <summary> <b> Supported Public Trackers </b> </summary>
|
<details> <summary> <b> Supported Public Trackers </b> </summary>
|
||||||
|
|
||||||
* 1337x
|
* 1337x
|
||||||
|
* 7torrents
|
||||||
* ACG.RIP
|
* ACG.RIP
|
||||||
* ACGsou
|
* ACGsou
|
||||||
* Anidex
|
* Anidex
|
||||||
|
|
77
src/Jackett.Common/Definitions/7torrents.yml
Normal file
77
src/Jackett.Common/Definitions/7torrents.yml
Normal file
|
@ -0,0 +1,77 @@
|
||||||
|
---
|
||||||
|
site: 7torrents
|
||||||
|
name: 7torrents
|
||||||
|
description: "7torrents is a Public BitTorrent DHT search engine."
|
||||||
|
language: en-us
|
||||||
|
type: public
|
||||||
|
encoding: UTF-8
|
||||||
|
links:
|
||||||
|
- https://www.7torrents.cc/
|
||||||
|
|
||||||
|
caps:
|
||||||
|
categories:
|
||||||
|
1: Other
|
||||||
|
|
||||||
|
modes:
|
||||||
|
search: [q]
|
||||||
|
tv-search: [q, season, ep]
|
||||||
|
movie-search: [q]
|
||||||
|
|
||||||
|
settings:
|
||||||
|
- name: info
|
||||||
|
type: info
|
||||||
|
default: 7torrents does not use categories. In your software Indexer settings, set the category to 100001.
|
||||||
|
- name: sort
|
||||||
|
type: select
|
||||||
|
label: Sort requested from site
|
||||||
|
default: "created"
|
||||||
|
options:
|
||||||
|
"created": "created"
|
||||||
|
"length": "size"
|
||||||
|
"seeders": "seeders"
|
||||||
|
|
||||||
|
search:
|
||||||
|
# https://www.7torrents.cc/search?query=2020&sort=created
|
||||||
|
paths:
|
||||||
|
- path: search
|
||||||
|
inputs:
|
||||||
|
query: "{{ if .Keywords }}{{ .Keywords }}{{else}}2020{{end}}"
|
||||||
|
sort: "{{ .Config.sort }}"
|
||||||
|
|
||||||
|
rows:
|
||||||
|
selector: div.media
|
||||||
|
|
||||||
|
fields:
|
||||||
|
category:
|
||||||
|
text: 1
|
||||||
|
title:
|
||||||
|
selector: div.media
|
||||||
|
attribute: data-name
|
||||||
|
details:
|
||||||
|
selector: div.media h5 a
|
||||||
|
attribute: href
|
||||||
|
download:
|
||||||
|
selector: div.media-right a[href*="/torrent/"]
|
||||||
|
attribute: href
|
||||||
|
magnet:
|
||||||
|
selector: a[href^="magnet:?xt="]
|
||||||
|
attribute: href
|
||||||
|
date:
|
||||||
|
selector: div.media
|
||||||
|
attribute: data-added
|
||||||
|
filters:
|
||||||
|
- name: timeago
|
||||||
|
size:
|
||||||
|
selector: div.media
|
||||||
|
attribute: data-size
|
||||||
|
seeders:
|
||||||
|
selector: div.media
|
||||||
|
attribute: data-seeders
|
||||||
|
leechers:
|
||||||
|
selector: div.media
|
||||||
|
attribute: data-leechers
|
||||||
|
downloadvolumefactor:
|
||||||
|
text: 0
|
||||||
|
uploadvolumefactor:
|
||||||
|
text: 1
|
||||||
|
# engine n/a
|
Loading…
Add table
Reference in a new issue