calibre/recipes/foxnews.recipe
2015-12-20 22:16:10 +05:30

53 lines
2.1 KiB
Plaintext

__license__ = 'GPL v3'
__copyright__ = '2010-2011, Darko Miletic <darko.miletic at gmail.com>'
'''
foxnews.com
'''
from calibre.web.feeds.news import BasicNewsRecipe
class FoxNews(BasicNewsRecipe):
title = 'FOX News'
__author__ = 'Darko Miletic'
description = 'Breaking News from FOX'
publisher = 'FOXNews.com'
category = 'news, breaking news, latest news, current news, world news, national news, USA'
oldest_article = 2
max_articles_per_feed = 200
no_stylesheets = True
encoding = 'utf8'
use_embedded_content = False
language = 'en'
publication_type = 'newsportal'
remove_empty_feeds = True
extra_css = """
body{font-family: Arial,sans-serif }
.caption{font-size: x-small}
.author,.dateline{font-size: small}
"""
conversion_options = {
'comment' : description
, 'tags' : category
, 'publisher' : publisher
, 'language' : language
}
remove_attributes = ['xmlns','lang']
keep_only_tags = [
dict(itemprop=['headline', 'articleBody']),
]
feeds = [
(u'Latest Headlines', u'http://feeds.foxnews.com/foxnews/latest' )
,(u'National' , u'http://feeds.foxnews.com/foxnews/national' )
,(u'World' , u'http://feeds.foxnews.com/foxnews/world' )
,(u'Politics' , u'http://feeds.foxnews.com/foxnews/politics' )
,(u'Business' , u'http://feeds.foxnews.com/foxnews/business' )
,(u'SciTech' , u'http://feeds.foxnews.com/foxnews/scitech' )
,(u'Health' , u'http://feeds.foxnews.com/foxnews/health' )
,(u'Entertainment' , u'http://feeds.foxnews.com/foxnews/entertainment' )
]