mirror of
https://github.com/Jackett/Jackett
synced 2024-12-30 19:58:39 +00:00
add mixtapetorrent a public site resolves #9988
This commit is contained in:
parent
c2f4f74b24
commit
91bb8fae50
2 changed files with 68 additions and 2 deletions
|
@ -66,7 +66,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* IBit
|
||||
* Idope
|
||||
* Il CorSaRo Blu
|
||||
* Il Corsaro Nero <!-- maintained by bonny1992 -->
|
||||
* Il Corsaro Nero
|
||||
* Internet Archive (archive.org)
|
||||
* Isohunt2
|
||||
* iTorrent
|
||||
|
@ -80,7 +80,8 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* MacTorrents
|
||||
* Magnet4You
|
||||
* MagnetDL
|
||||
* MejorTorrent <!-- maintained by ivandelabeldad -->
|
||||
* MejorTorrent
|
||||
* MixTapeTorrent
|
||||
* Monova
|
||||
* MovCr
|
||||
* MoviesDVDR
|
||||
|
|
65
src/Jackett.Common/Definitions/mixtapetorrent.yml
Normal file
65
src/Jackett.Common/Definitions/mixtapetorrent.yml
Normal file
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
id: mixtapetorrent
|
||||
name: MixtapeTorrent
|
||||
description: "MixtapeTorrent is a Public Music site for MixTapes"
|
||||
language: en-us
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- http://www.mixtapetorrent.com/ # does not support https NET::ERR_CERT_AUTHORITY_INVALID
|
||||
|
||||
caps:
|
||||
categories:
|
||||
# while the site has categories for searching, it does not include them in the results.
|
||||
1: Audio
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
music-search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
download:
|
||||
selector: table#attachments > tbody > tr.odd > td > a
|
||||
attribute: href
|
||||
|
||||
search:
|
||||
paths:
|
||||
# http://www.mixtapetorrent.com/search/node/2020+type:story
|
||||
- path: "search/node/{{ if .Keywords }}{{ .Keywords }}{{ else }}2020{{ end }} type:story"
|
||||
|
||||
rows:
|
||||
selector: dl.search-results > dt, dl.search-results > dd
|
||||
after: 1
|
||||
|
||||
fields:
|
||||
category:
|
||||
text: 1
|
||||
title:
|
||||
selector: a
|
||||
details:
|
||||
selector: a
|
||||
attribute: href
|
||||
download:
|
||||
selector: a
|
||||
attribute: href
|
||||
description:
|
||||
selector: p
|
||||
date:
|
||||
selector: p.search-info
|
||||
filters:
|
||||
- name: regexp
|
||||
args: "(\\w{3} \\d{1,2} \\d{4} - \\d{1,2}:\\d{2}[a|p]m)"
|
||||
- name: dateparse
|
||||
args: "Jan 2 2006 - 3:04pm"
|
||||
size:
|
||||
text: "128 MB"
|
||||
seeders:
|
||||
text: 1
|
||||
leechers:
|
||||
text: 1
|
||||
downloadvolumefactor:
|
||||
text: 0
|
||||
uploadvolumefactor:
|
||||
text: 1
|
||||
# engine n/a
|
Loading…
Reference in a new issue