calibre/recipes/foxnews.recipe
Kovid Goyal 567040ee1e Perform PEP8 compliance checks on the entire codebase
Some bits of PEP 8 are turned off via setup.cfg
2016-07-29 21:25:17 +05:30

51 lines
1.7 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')
]