mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-01-03 02:30:21 -05:00
16 lines
676 B
Plaintext
16 lines
676 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class SpidersWeb(BasicNewsRecipe):
|
|
title = u"Spider's Web"
|
|
oldest_article = 7
|
|
__author__ = 'fenuks'
|
|
description = u''
|
|
cover_url = 'http://www.spidersweb.pl/wp-content/themes/spiderweb/img/Logo.jpg'
|
|
category = 'IT, WEB'
|
|
language = 'pl'
|
|
max_articles_per_feed = 100
|
|
remove_tags_before=dict(name="h1", attrs={'class':'Title'})
|
|
remove_tags_after=dict(name="div", attrs={'class':'Text'})
|
|
remove_tags=[dict(name='div', attrs={'class':['Tags', 'CommentCount FloatL', 'Show FloatL']})]
|
|
feeds = [(u'Wpisy', u'http://www.spidersweb.pl/feed')]
|