View Single Post
Old 11-29-2013, 09:56 AM   #3
Divingduck
Wizard
Divingduck ought to be getting tired of karma fortunes by now.Divingduck ought to be getting tired of karma fortunes by now.Divingduck ought to be getting tired of karma fortunes by now.Divingduck ought to be getting tired of karma fortunes by now.Divingduck ought to be getting tired of karma fortunes by now.Divingduck ought to be getting tired of karma fortunes by now.Divingduck ought to be getting tired of karma fortunes by now.Divingduck ought to be getting tired of karma fortunes by now.Divingduck ought to be getting tired of karma fortunes by now.Divingduck ought to be getting tired of karma fortunes by now.Divingduck ought to be getting tired of karma fortunes by now.
 
Posts: 1,166
Karma: 1410083
Join Date: Nov 2010
Location: Germany
Device: Sony PRS-650
Kovid,
a new update was necessary due to changes on their pages.

Spoiler:
Code:
from calibre.web.feeds.recipes import BasicNewsRecipe
class AdvancedUserRecipe1303841067(BasicNewsRecipe):

    title                     = u'Börse-online'
    __author__                = 'Armin Geller' #AGE upd 2013-11-29
    oldest_article            = 1
    max_articles_per_feed     = 100
    no_stylesheets            = True
    use_embedded_content      = False
    language                  = 'de'
    remove_javascript         = True
    remove_empty_feeds        = True
    ignore_duplicate_articles = {'title', 'url'}
    encoding                  = 'utf-8'
    timefmt                   = ' [%a, %d %b %Y]'
    
    cover_url = 'http://www.wirtschaftsmedien-shop.de/s/media/coverimages/7576_2013107.jpg'
    masthead_url = 'http://upload.wikimedia.org/wikipedia/de/5/56/B%C3%B6rse_Online_Logo.svg'

    feeds          = [(u'Börsennachrichten', u'http://www.boerse-online.de/rss'),
                       (u'Märkte', u'http://www.boerse-online.de/rss/maerkte'),
                       (u'Chartanalyse', u'http://www.boerse-online.de/rss/maerkte/chartanalyse'),
                       (u'Aktien', u'http://www.boerse-online.de/rss/aktie'),
                       (u'Aktien-Chartanalyse', u'http://www.boerse-online.de/rss/aktie/chartanalyse'),
                       (u'zertifikate', u'http://www.boerse-online.de/rss/zertifikat')
                      ]
    
    def print_version(self, url):
        s1,s2 = url.rsplit('/', 1)
        return 'http://www.boerse-online.de/nachrichten/drucken/'+s2
Attached Files
File Type: zip Boerse-Online_AGeV2.zip (774 Bytes, 195 views)
Divingduck is offline   Reply With Quote