mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
17 lines
748 B
Plaintext
17 lines
748 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
class Informacje_USA(BasicNewsRecipe):
|
|
title = u'Informacje USA'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
__author__ = 'fenuks'
|
|
description = u'portal wiadomości amerykańskich'
|
|
category = 'news'
|
|
language = 'pl'
|
|
cover_url='http://www.informacjeusa.com/wp-content/uploads/2013/01/V3BANNER420-90new.jpg'
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
keep_only_tags=[dict(id='post-area')]
|
|
remove_tags_after= dict(id='content-area')
|
|
remove_tags= [dict(attrs={'class':['breadcrumb']}), dict(id=['social-box', 'social-box-vert'])]
|
|
feeds = [(u'Informacje', u'http://www.informacjeusa.com/feed/')]
|