2007-07-20 21:25:48 +00:00
|
|
|
plugin_name = _("RSS Broadcatcher")
|
2007-07-15 18:49:45 +00:00
|
|
|
plugin_author = "Mark Adamson"
|
|
|
|
plugin_version = "1.0"
|
2007-07-20 21:25:48 +00:00
|
|
|
plugin_description = _("""
|
2007-07-15 18:49:45 +00:00
|
|
|
Download Torrents automatically from RSS Feeds
|
|
|
|
|
|
|
|
The latest version of my RSS autodownloader, which uses the Universal Feed parser (http://feedparser.org/). Add RSS feeds on the 'Feeds' tab, then add filters for TV shows (or whatever) on the 'Filters' tab. Double-click entries on the 'Torrents' tab to download extra torrents from the feeds. The Options are pretty self-explanatary.
|
|
|
|
|
|
|
|
Please message me (SatNav) on the forums and let me know how you get on..
|
|
|
|
|
2007-07-20 21:25:48 +00:00
|
|
|
Enjoy!""")
|
2007-07-15 18:49:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
def deluge_init(deluge_path):
|
|
|
|
global path
|
|
|
|
path = deluge_path
|
|
|
|
|
|
|
|
|
|
|
|
from RSS.plugin import plugin_RSS
|
|
|
|
|
|
|
|
def enable(core, interface):
|
|
|
|
global path
|
|
|
|
return plugin_RSS(path, core, interface)
|