mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-11-23 06:53:02 -05:00
18 lines
514 B
Plaintext
18 lines
514 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class AdvancedUserRecipe1257093338(BasicNewsRecipe):
|
|
title = u'Golem.de'
|
|
language = 'de'
|
|
__author__ = 'Kovid Goyal'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
|
|
feeds = [(u'Golem.de', u'http://rss.golem.de/rss.php?feed=ATOM1.0')]
|
|
|
|
def print_version(self, url):
|
|
murxb = url.rfind('/') + 1
|
|
murxc = url[murxb :-5]
|
|
murxa = 'http://www.golem.de/' + 'print.php?a=' + murxc
|
|
return murxa
|
|
|