1
import logging
2
from flexget.plugin import *
3
4
log = logging.getLogger("btchat")5
6
7
class UrlRewriteBtChat:
8
"""BtChat urlrewriter."""
9
10
def url_rewritable(self, feed, entry):
11
return entry['url'].startswith('http://www.bt-chat.com/download.php')12
13
def url_rewrite(self, feed, entry):
14
entry['url'] = entry['url'].replace('download.php', 'download1.php')15
16
register_plugin(UrlRewriteBtChat, 'btchat', groups=['urlrewriter'])
17