All Projects → Igglybuff → linky

Igglybuff / linky

Licence: other
Searches the internet for DDL links and sends them to your favourite download manager

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to linky

Api
PHP 7.3+ API Wrapper for The Movie Database
Stars: ✭ 317 (+734.21%)
Mutual labels:  movies, tv
Flexget
The official FlexGet repository
Stars: ✭ 1,279 (+3265.79%)
Mutual labels:  movies, tv
Warezz
It's illegal cuz they can't tax you!
Stars: ✭ 386 (+915.79%)
Mutual labels:  movies, tv
libDrive
libDrive is a Google Drive media library manager and indexer, similar to Plex, that organizes Google Drive media to offer an intuitive and user-friendly experience.
Stars: ✭ 14 (-63.16%)
Mutual labels:  movies, tv
Rapidbay
Self-hosted torrent video streaming service compatible with Chromecast and AppleTV deployable in the cloud
Stars: ✭ 163 (+328.95%)
Mutual labels:  movies, tv
Homehost
self-hosted, Netflix-like app made for streaming
Stars: ✭ 564 (+1384.21%)
Mutual labels:  movies, tv
Flox
Self Hosted Movie, Series and Anime Watch List
Stars: ✭ 901 (+2271.05%)
Mutual labels:  movies, tv
Seriesguide
Track your favorite TV shows and movies on Android devices.
Stars: ✭ 1,600 (+4110.53%)
Mutual labels:  movies, tv
Streaming
r/freemediaheckyeah
Stars: ✭ 147 (+286.84%)
Mutual labels:  movies, tv
Moviecontentfilter
Watch movies with the freedom (not) to filter
Stars: ✭ 126 (+231.58%)
Mutual labels:  movies, tv
anime-streaming
📺 A curated list of worldwide legal anime streaming.
Stars: ✭ 49 (+28.95%)
Mutual labels:  movies, tv
Awesome Piracy
A curated list of awesome warez and piracy links
Stars: ✭ 13,911 (+36507.89%)
Mutual labels:  movies, tv
stremio-addons-list
A community curated list of Stremio Addons
Stars: ✭ 330 (+768.42%)
Mutual labels:  movies, tv
flutter tv
flutter_tv:Flutter TV电视应用开发实践
Stars: ✭ 80 (+110.53%)
Mutual labels:  tv
home-assistant-svt-play
Play SVT Play videos and channels via home assistant
Stars: ✭ 17 (-55.26%)
Mutual labels:  tv
homebridge-bravia-tvos
Homebridge plugin for Sony Bravia Android TVs
Stars: ✭ 293 (+671.05%)
Mutual labels:  tv
P4S
Premieres for Sonarr - a small sonarr companion app to find all the new shows you've never known you're interested in!
Stars: ✭ 22 (-42.11%)
Mutual labels:  tv
Zee5
Just a simple shit but no one knows
Stars: ✭ 29 (-23.68%)
Mutual labels:  movies
comfy-channel
A 24/7 live video broadcast with automatic content selection and overlays using FFMPEG and Python!
Stars: ✭ 37 (-2.63%)
Mutual labels:  tv
arch-plexpass
Docker build script for Arch Linux base with Plex Pass Media Server installed
Stars: ✭ 21 (-44.74%)
Mutual labels:  movies

linky

linky is a work-in-progress command-line tool which can search the internet for movies and TV shows hosted on 1-click hosting websites like OpenLoad (full list of supported hosters coming soon).

linky integrates tightly with JDownloader and can send any URL (or multiple URLs as a comma-separated list) to a JDownloader "device" via the my.jdownloader.org API or to a pyLoad instance.

At the moment, linky uses the Orion API to find links which requires an app key. To acquire an app key, you must sign up for an Orion account and register for an app key via their registration form.

Installation

To install linky:

# clone this repository
git clone https://github.com/Igglybuff/linky.git && cd linky

# install it with pip
pip3 install .

# test that it installed correctly
linky --help

Usage

Configuration

By default, linky looks for ~/.config/linky/linky.conf for configuration. For example, to configure JDownloader, pyLoad, and Orion:

[client jdownloader]
default = true
email = [email protected]
password = foobar123
device_id = 12345678

[client pyload]
hostname = localhost
port = 8000
username = pyload
password = pyload
ssl = false

[indexer orion]
user_key = ABCDEFGHIJ123456
app_key = KLMNOPQRS789012

MyJDownloader

Sign up for an account and sign in to it on your JDownloader client(s). You can find your client's device ID by clicking on it on the MyJDownloader website and reading the deviceId= URL parameter in your address bar.

Searching for links

Only OpenLoad links are returned at the moment, but there are plans to enable setting different sources in the future.

Basic keyword search

linky search --hosters openload --indexer orion --media-type movie "White Boy Rick"

IMDB ID search with 10 results

linky search --hosters openload --indexer orion --query-type imdb --media-type movie --results 10 "5519340"

TMDB ID search for 720p only

linky search -w openload -i orion -t tmdb -m movie -q hd1080 -r 6 "424694"

Sending links to JDownloader

linky push --link "<url>" --downloader jdownloader

Searching and sending a link to JDownloader

linky push --link $(linky search --indexer orion "White Boy Rick") --downloader jdownloader

Checking the status of your downloads

linky status --downloader jdownloader

Planned features

All subcommands:

  • Implement a more convenient way of searching and pushing in the same command
  • Implement taking a comma-separated list of URLs as input
  • Implement the --silence feature to suppress informational log output
  • Implement pyLoad integration
  • Implement human-readable output as a default with --json as an optional alternative (and maybe --pretty-print too)

linky search:

  • Implement a --results option to print the first n URLs returned from Orion API as a comma-separated list
  • Implement a --hosters option to set the 1-click-host source
  • Implement a --query-type option to override the default keyword search, e.g. to search by IMDB/TVDB/TMDB ID.
  • Implement a --quality option to set the preferred video quality to return
  • Implement an --age option to set the maximum number of days since the link was added to the indexer

linky push:

  • Implement a way to print info about pushed links including package ID and file name

linky status:

  • Implement --all option to output a report for everything in your download manager (this is the default now)
  • Implement a main argument to get the status of a specific package/download by file name
  • Implement an --id option to get the status of a package by ID
  • Implement human-readable output to print % completed, total size, download speed, and name
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].