mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
add academictorrents a public site. resolves #7405
This commit is contained in:
@@ -26,6 +26,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||||||
|
|
||||||
* 1337x
|
* 1337x
|
||||||
* 7torrents
|
* 7torrents
|
||||||
|
* AcademicTorrents
|
||||||
* ACG.RIP
|
* ACG.RIP
|
||||||
* ACGsou
|
* ACGsou
|
||||||
* Anidex
|
* Anidex
|
||||||
|
100
src/Jackett.Common/Definitions/academictorrents.yml
Normal file
100
src/Jackett.Common/Definitions/academictorrents.yml
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
---
|
||||||
|
site: academictorrents
|
||||||
|
name: AcademicTorrents
|
||||||
|
description: "AcademicTorrents is a Public Community-Maintained Distributed Repository for datasets and scientific knowledge."
|
||||||
|
language: en-us
|
||||||
|
type: public
|
||||||
|
encoding: UTF-8
|
||||||
|
links:
|
||||||
|
- https://academictorrents.com/
|
||||||
|
|
||||||
|
caps:
|
||||||
|
categorymappings:
|
||||||
|
- {id: 5, cat: Books, desc: "Paper"}
|
||||||
|
- {id: 6, cat: Other, desc: "Dataset"}
|
||||||
|
- {id: 7, cat: TV/Documentary, desc: "Course"}
|
||||||
|
|
||||||
|
modes:
|
||||||
|
search: [q]
|
||||||
|
|
||||||
|
settings:
|
||||||
|
- name: sort
|
||||||
|
type: select
|
||||||
|
label: Sort requested from site
|
||||||
|
default: "added"
|
||||||
|
options:
|
||||||
|
"added": "created"
|
||||||
|
"seeders": "seeders"
|
||||||
|
"size": "size"
|
||||||
|
"name": "title"
|
||||||
|
- name: type
|
||||||
|
type: select
|
||||||
|
label: Order requested from site
|
||||||
|
default: "DESC"
|
||||||
|
options:
|
||||||
|
"DESC": "desc"
|
||||||
|
"ASC": "asc"
|
||||||
|
|
||||||
|
search:
|
||||||
|
# https://academictorrents.com/browse.php?search=&c5=1&c6=1&c7=1&sort_field=added&sort_dir=DESC
|
||||||
|
paths:
|
||||||
|
- path: browse.php
|
||||||
|
- path: browse.php
|
||||||
|
inputs:
|
||||||
|
page: 1
|
||||||
|
inputs:
|
||||||
|
$raw: "{{ range .Categories }}c{{.}}=1&{{end}}"
|
||||||
|
search: "{{ .Keywords }}"
|
||||||
|
sort_field: "{{ .Config.sort }}"
|
||||||
|
sort_dir: "{{ .Config.type }}"
|
||||||
|
|
||||||
|
rows:
|
||||||
|
selector: table.table> tbody > tr:has(a[href^="/browse.php?cat="])
|
||||||
|
filters:
|
||||||
|
- name: andmatch
|
||||||
|
|
||||||
|
fields:
|
||||||
|
category:
|
||||||
|
selector: a[href^="/browse.php?cat="]
|
||||||
|
attribute: href
|
||||||
|
filters:
|
||||||
|
- name: querystring
|
||||||
|
args: cat
|
||||||
|
title:
|
||||||
|
selector: a[href^="/details/"]
|
||||||
|
details:
|
||||||
|
selector: a[href^="/details/"]
|
||||||
|
attribute: href
|
||||||
|
download:
|
||||||
|
# /download/08078e0894099530913e9335bdbc804f42f6e872.torrent"
|
||||||
|
selector: a[href^="/details/"]
|
||||||
|
attribute: href
|
||||||
|
filters:
|
||||||
|
- name: replace
|
||||||
|
args: ["/details/", "/download/"]
|
||||||
|
- name: append
|
||||||
|
args: ".torrent"
|
||||||
|
date:
|
||||||
|
selector: td:nth-child(4)
|
||||||
|
filters:
|
||||||
|
- name: dateparse
|
||||||
|
args: "2006-01-02"
|
||||||
|
size:
|
||||||
|
selector: td:nth-child(5)
|
||||||
|
grabs:
|
||||||
|
selector: td:nth-child(6)
|
||||||
|
seeders:
|
||||||
|
text: 0
|
||||||
|
seeders:
|
||||||
|
selector: td:nth-child(7):not(:empty)
|
||||||
|
optional: true
|
||||||
|
filters:
|
||||||
|
- name: replace
|
||||||
|
args: ["+", ""]
|
||||||
|
leechers:
|
||||||
|
selector: td:nth-child(8)
|
||||||
|
downloadvolumefactor:
|
||||||
|
text: 0
|
||||||
|
uploadvolumefactor:
|
||||||
|
text: 1
|
||||||
|
# engine n/a
|
Reference in New Issue
Block a user