mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
16 lines
654 B
Plaintext
16 lines
654 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class Elektroda(BasicNewsRecipe):
|
|
title = u'Elektroda'
|
|
oldest_article = 8
|
|
__author__ = 'fenuks'
|
|
description = 'Elektroda.pl'
|
|
cover_url = 'http://demotywatory.elektroda.pl/Thunderpic/logo.gif'
|
|
category = 'electronics'
|
|
language = 'pl'
|
|
max_articles_per_feed = 100
|
|
remove_tags_before=dict(name='span', attrs={'class':'postbody'})
|
|
remove_tags_after=dict(name='td', attrs={'class':'spaceRow'})
|
|
remove_tags=[dict(name='a', attrs={'href':'#top'})]
|
|
feeds = [(u'Elektroda', u'http://www.elektroda.pl/rtvforum/rss.php')]
|