mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
58 lines
2.3 KiB
Plaintext
58 lines
2.3 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2010, 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}
|
|
"""
|
|
|
|
conversion_options = {
|
|
'comment' : description
|
|
, 'tags' : category
|
|
, 'publisher' : publisher
|
|
, 'language' : language
|
|
}
|
|
|
|
remove_attributes = ['xmlns','lang']
|
|
|
|
remove_tags = [
|
|
dict(name=['object','embed','link','script','iframe','meta','base'])
|
|
,dict(attrs={'class':['user-control','url-description','ad-context']})
|
|
]
|
|
|
|
remove_tags_before=dict(name='h1')
|
|
remove_tags_after =dict(attrs={'class':'url-description'})
|
|
|
|
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' )
|
|
]
|
|
|
|
def print_version(self, url):
|
|
return url + 'print'
|