From c4402412e4fa7df0ae71ad311afc9bb764791831 Mon Sep 17 00:00:00 2001 From: James Cridland Date: Mon, 24 Feb 2020 11:36:37 +1000 Subject: [PATCH] Delete business_spectator.recipe This publication is no longer available. It's now part of The Australian, which has a separate recipe here. --- recipes/business_spectator.recipe | 40 ------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 recipes/business_spectator.recipe diff --git a/recipes/business_spectator.recipe b/recipes/business_spectator.recipe deleted file mode 100644 index 31b03570f6..0000000000 --- a/recipes/business_spectator.recipe +++ /dev/null @@ -1,40 +0,0 @@ -__license__ = 'GPL v3' -__copyright__ = '2010, Dean Cording' -''' -abc.net.au/news -''' -import re -from calibre.web.feeds.recipes import BasicNewsRecipe - - -class BusinessSpectator(BasicNewsRecipe): - title = 'Business Spectator' - __author__ = 'Dean Cording' - description = 'Australian Business News & commentary delivered the way you want it.' - masthead_url = 'http://www.businessspectator.com.au/bs.nsf/logo-business-spectator.gif' - cover_url = masthead_url - - oldest_article = 2 - max_articles_per_feed = 100 - no_stylesheets = True - auto_cleanup = True - use_embedded_content = False - encoding = 'utf8' - publisher = 'Business Spectator' - category = 'News, Australia, Business' - language = 'en_AU' - publication_type = 'newsportal' - preprocess_regexps = [(re.compile(r'', re.DOTALL), lambda m: '')] - conversion_options = { - 'comments': description, 'tags': category, 'language': language, 'publisher': publisher, 'linearize_tables': False - } - - feeds = [ - ('Top Stories', 'http://www.businessspectator.com.au/top-stories.rss'), - ('Alan Kohler', 'http://www.businessspectator.com.au/bs.nsf/RSS?readform&type=spectators&cat=Alan%20Kohler'), - ('Robert Gottliebsen', 'http://www.businessspectator.com.au/bs.nsf/RSS?readform&type=spectators&cat=Robert%20Gottliebsen'), - ('Stephen Bartholomeusz', - 'http://www.businessspectator.com.au/bs.nsf/RSS?readform&type=spectators&cat=Stephen%20Bartholomeusz'), - ('Daily Dossier', 'http://www.businessspectator.com.au/bs.nsf/RSS?readform&type=kgb&cat=dossier'), - ('Australia', 'http://www.businessspectator.com.au/bs.nsf/RSS?readform&type=region&cat=australia'), - ]