mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
17 lines
614 B
Plaintext
17 lines
614 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class CD_Action(BasicNewsRecipe):
|
|
title = u'CD-Action'
|
|
__author__ = 'fenuks'
|
|
description = 'cdaction.pl - polish magazine about games site'
|
|
category = 'games'
|
|
language = 'pl'
|
|
oldest_article = 8
|
|
max_articles_per_feed = 100
|
|
no_stylesheets= True
|
|
cover_url =u'http://s.cdaction.pl/obrazki/logo-CD-Action_172k9.JPG'
|
|
keep_only_tags= dict(id='news_content')
|
|
remove_tags_after= dict(name='div', attrs={'class':'tresc'})
|
|
feeds = [(u'Newsy', u'http://www.cdaction.pl/rss_newsy.xml')]
|