Skip to main content

Deluge plugin for automatic torrents updates

Project description

http://github.com/idlesign/deluge-updatorr

What’s that

deluge-updatorr is a Deluge plugin for automatic torrents updates.

If you’re periodically checking your favourite torrent tracker site, on which torrents are organized as articles (i.e forum-like tracker), to verify whether specific torrents have been updated (e.g. torrent bundling some TV-series is updated with a new episode), then Updatorr is might be of use.

You activate Updatorr plugin, set autoupdate period and trackers sites credentials, choose torrents to be updated from Deluge torrents list, and Updatorr will do checks for you. When torrent update is available, Updatorr will replace old torrent with an updated one, and download new files from new torrent.

Automatic updates are available for:

Deluge is a lightweight, Free Software, cross-platform BitTorrent client. Download it at http://deluge-torrent.org/

Installation

Open Deluge, go to “Preferences -> Plugins -> Install plugin” and choose Updatorr .egg file.

If you are to build .egg file from source code yourself use python setup.py bdist_egg command in source code root directory.

Troubleshooting

Q: I installed Updatorr and checked it on plugins page, but Updatorr page is not shown in preferences dialog.

A: 1. Verify that you downloaded and installed Updatorr for the same Python

version your Deluge is working on. Updatorr is available from PyPI in distribution for Python 2.7.

  1. Verify that python-setuptools package is installed.

Q: It seems that Updatorr doesn’t work with my OS/Python/Deluge/GTK+ versions.

A: Updatorr is developed and used with Ubuntu, Python 2.7, Deluge 1.3.3, GTK+ 2.24. It may or may not work with other software. Anyway you’re always welcome to improve Updatorr to support those (see Get involved section down below).

Trackers Handlers

The information below is intended for those wishing to enable Updatorr autoupdates for their favourite tracker site.

In order to perform automatic updates Updatorr should be instructed how to perform those, as different torrent tracking sites require different machinery to get updated torrents.

Tracker handlers are nothing more as relatively simple scripts in great Python programming language.

To create a tracker handler class one needs to:

  1. Have essential knowledge in Python programming;

  2. Get Updatorr source code from http://github.com/idlesign/deluge-updatorr/;

  3. Create hander_{mytracker}.py file under updatorr/tracker_handlers/;

  4. In that file subclass BaseTrackerHandler and implement its get_torrent_file() method; Note: See base class properties and methods, as they might be of use.

  5. In that file register you class with register_tracker_handler().

Tracker handler sample updatorr/tracker_handlers/handler_mytrack.py:

from updatorr.handler_base import BaseTrackerHandler
from updatorr.utils import register_tracker_handler

class MyTrackHandler(BaseTrackerHandler):

    # Let's suppose that tracker site doesn't require authorization.
    login_required = False

    def get_torrent_file(self):
        # Here one should implement .torrent file download and
        # save into filesystem. See BaseTrackerHandler fo helper methods.
        torrent_filepath = '/somewhere/in/my/filesystem/new.torrent'
        return torrent_filepath

register_tracker_handler('mytrackaurl.com', MyTrackHandler)
register_tracker_handler('yotr.su', MyTrackHandler)

It is not that as if only the BaseTrackerHandler class is at your service. You can speed up your development using GenericTrackerHandler, GenericPublicTrackerHandler and GenericPrivateTrackerHandler classes, each on which introduces different levels of abstraction.

See updatorr/tracker_handlers/handler_rutracker.py and updatorr/handler_base.py for reference. Read docstrings of Updatorr.

Get involved into deluge-updatorr

Submit issues. If you spotted something weird in application behavior or want to propose a feature you can do that at https://github.com/idlesign/deluge-updatorr/issues

Write code. If you are eager to participate in application development, fork it at https://github.com/idlesign/deluge-updatorr, write your code, whether it should be a bugfix or a feature implementation, and make a pull request right from the forked project page.

Spread the word. If you have some tips and tricks or any other words in mind that you think might be of interest for the others — publish it.

The tip

You might be interested in considering other Deluge plugins at http://dev.deluge-torrent.org/wiki/Plugins/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Updatorr-0.1.8.tar.gz (23.1 kB view details)

Uploaded Source

Built Distribution

Updatorr-0.1.8-py2.7.egg (44.3 kB view details)

Uploaded Source

File details

Details for the file Updatorr-0.1.8.tar.gz.

File metadata

  • Download URL: Updatorr-0.1.8.tar.gz
  • Upload date:
  • Size: 23.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Updatorr-0.1.8.tar.gz
Algorithm Hash digest
SHA256 82bfae93a61bbf22843e2549ef1c2a53a148c6ba9f6a90e7f608f10b77641187
MD5 3c5cf7f12c73a499060bb60f84c5ff4b
BLAKE2b-256 c2804750566794b35240429960ca6ecceb5f6f3b0a8d7f5a50b1412fd6d8767c

See more details on using hashes here.

File details

Details for the file Updatorr-0.1.8-py2.7.egg.

File metadata

  • Download URL: Updatorr-0.1.8-py2.7.egg
  • Upload date:
  • Size: 44.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Updatorr-0.1.8-py2.7.egg
Algorithm Hash digest
SHA256 9cca6590c32475e1c4cdf91803b375867760c9e72e90806784754fbdb8c4dc1d
MD5 6b8fa5f6fc942fd46d0b58b5c3b3df87
BLAKE2b-256 6558de1ea05561467c621286ecfadb20fee158a0eed9ab28cc2b4e9e0680bc21

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page