mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
|
|
from __future__ import unicode_literals
|
|
from calibre.web.feeds.recipes import BasicNewsRecipe
|
|
import re
|
|
|
|
|
|
class lnRecipe(BasicNewsRecipe):
|
|
__author__ = 'bubak'
|
|
title = u'lidovky'
|
|
publisher = u''
|
|
description = 'lidovky.cz'
|
|
oldest_article = 1
|
|
max_articles_per_feed = 20
|
|
|
|
feeds = [
|
|
(u'Události', u'http://www.lidovky.cz/export/rss.asp?r=ln_domov'),
|
|
(u'Svět', u'http://www.lidovky.cz/export/rss.asp?r=ln_zahranici'),
|
|
(u'Byznys', u'http://www.lidovky.cz/export/rss.asp?c=ln_byznys'),
|
|
(u'Věda', u'http://www.lidovky.cz/export/rss.asp?r=ln_veda'),
|
|
(u'Názory', u'http://www.lidovky.cz/export/rss.asp?r=ln_nazory'),
|
|
(u'Relax', u'http://www.lidovky.cz/export/rss.asp?c=ln_relax')
|
|
]
|
|
|
|
language = 'cs'
|
|
cover_url = 'http://g.lidovky.cz/o/lidovky_ln3b/lidovky-logo.png'
|
|
remove_javascript = True
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
remove_attributes = []
|
|
remove_tags_before = dict(name='div', attrs={'id': ['content']})
|
|
remove_tags_after = dict(name='div', attrs={'class': ['authors']})
|
|
preprocess_regexps = [(re.compile(
|
|
r'<div id="(fb-root)".*', re.DOTALL | re.IGNORECASE), lambda match: '</body>')]
|
|
|
|
keep_only_tags = []
|