Giter Club home page Giter Club logo

jackett-filter's Introduction

Jackett-Filter

This utility works as a proxy for Jackett (https://github.com/Jackett/Jackett) and is designed to filter the final results (by torrent size and/or number of seeds)

Console arguments

Arg Required Default value Description
--util_port False 9118 Port on which the proxy web server will start
--config_file False config.json File name with configs. File must be placed in config folder near main.py

Instruction for JSON config file

First of all, you need to create config folder near main.py file. Then create inside this folder blank new file. Strongly recommended to create file with name config.json, because in the future it is not expected to enter a console argument --config_file.

JSON config keys

Key Required Default value Type Description Example
link True Null String Link to Jackett "link": "http://<host>:9117"
min_seeds False 2 Integer Minimum seeds in result "min_seeds": 2
min_size False 1 Integer/Float Minimum size of torrent in Gb "min_size": 1.5
max_size False Null Integer/Float Maximum size of torrent in Gb "max_size": 145
ignore_params False Null JsonArray(String) Ignoring params in query "ignore_params": ["genres", "is_serial"]
add_categorises False Null JsonArray(Integer/String) Add categorises in query "add_categorises": [8000]

JSON config Example

{
  "link": "http://10.10.0.21:9117",
  "min_seeds": 2,
  "min_size": 1,
  "ignore_params": [
    "genres",
    "is_serial",
    "title",
    "title_original"
  ],
  "add_categorises": [8000]
}

Installation using Docker

  1. Build image docker build -t jackett-filter .
  2. Run container docker run -d --restart always -p 9118:9118 -v <path-to-config-folder>:/app/config -it --name jackett-filter jackett-filter

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.