mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
15 lines
602 B
Plaintext
15 lines
602 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class Lomza(BasicNewsRecipe):
|
|
title = u'4Lomza'
|
|
__author__ = 'fenuks'
|
|
description = u'4Łomża - regional site'
|
|
cover_url = 'http://www.4lomza.pl/i/logo4lomza_m.jpg'
|
|
language = 'pl'
|
|
oldest_article = 15
|
|
no_styleseets=True
|
|
max_articles_per_feed = 100
|
|
remove_tags=[dict(name='div', attrs={'class':['bxbanner', 'drukuj', 'wyslijznajomemu']})]
|
|
keep_only_tags=[dict(name='div', attrs={'class':'wiadomosc'})]
|
|
feeds = [(u'Łomża', u'http://feeds.feedburner.com/4lomza.pl')]
|