mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-11-24 15:25:01 -05:00
17 lines
529 B
Plaintext
17 lines
529 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class AdvancedUserRecipe1259599587(BasicNewsRecipe):
|
|
title = u'Gulli'
|
|
description = 'News from Germany'
|
|
language = 'de'
|
|
__author__ = 'posativ'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
|
|
feeds = [(u'gulli:news', u'http://ticker.gulli.com/rss/')]
|
|
|
|
remove_tags = [{'class' : ['addthis_button', 'BreadCrumb']}, {'id' : ['plista0']}]
|
|
|
|
keep_only_tags = [dict(name='div', attrs={'class':'inside'})]
|