mirror of
https://github.com/Jackett/Jackett
synced 2024-12-30 11:47:28 +00:00
add mactorrents a public tracker for mac software. resolves #4889
This commit is contained in:
parent
e5c9fcd58e
commit
093425ac0a
2 changed files with 64 additions and 0 deletions
|
@ -48,6 +48,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* KickAssTorrent (thekat.se clone)
|
||||
* KikiBT
|
||||
* LimeTorrents
|
||||
* MacTorrents
|
||||
* MagnetDL
|
||||
* MejorTorrent <!-- maintained by ivandelabeldad -->
|
||||
* Monova
|
||||
|
|
63
src/Jackett.Common/Definitions/mactorrents.yml
Normal file
63
src/Jackett.Common/Definitions/mactorrents.yml
Normal file
|
@ -0,0 +1,63 @@
|
|||
---
|
||||
site: mactorrents
|
||||
name: MacTorrents
|
||||
description: "MacTorrents is a Public tracker for Mac software"
|
||||
language: en-us
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://mac-torrents.com/
|
||||
|
||||
caps:
|
||||
categories:
|
||||
"mac-os-apps": PC/Mac
|
||||
"mac-os-games": PC/Games
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
search:
|
||||
paths:
|
||||
- path: /
|
||||
inputs:
|
||||
s: "{{.Keywords}}"
|
||||
rows:
|
||||
selector: div.iso-item article
|
||||
fields:
|
||||
title:
|
||||
selector: div.blog-content h3 a
|
||||
category:
|
||||
selector: a[href*="/category/"]
|
||||
attribute: href
|
||||
filters:
|
||||
- name: split
|
||||
args: ["/", 4]
|
||||
details:
|
||||
selector: div.blog-content h3 a
|
||||
attribute: href
|
||||
download:
|
||||
selector: a.download
|
||||
attribute: href
|
||||
banner:
|
||||
selector: div.blog-media p a img
|
||||
attribute: data-src
|
||||
date:
|
||||
selector: div.blog-content div.entry-meta time
|
||||
attribute: datetime
|
||||
filters:
|
||||
- name: replace
|
||||
args: ["T", " "]
|
||||
- name: dateparse
|
||||
args: "2006-01-02 15:04:05-07:00"
|
||||
size:
|
||||
text: "500 MB"
|
||||
seeders:
|
||||
text: "1"
|
||||
leechers:
|
||||
text: "1"
|
||||
downloadvolumefactor:
|
||||
text: "0"
|
||||
uploadvolumefactor:
|
||||
text: "1"
|
Loading…
Reference in a new issue