mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
40 lines
1.5 KiB
Plaintext
40 lines
1.5 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
import re
|
|
|
|
|
|
class Skeptic(BasicNewsRecipe):
|
|
title = u'The Skeptic'
|
|
description = 'Discussions with leading experts and investigation of fringe science and paranormal claims.'
|
|
language = 'en'
|
|
__author__ = 'Starson17'
|
|
oldest_article = 31
|
|
cover_url = 'http://www.skeptricks.com/images/Skeptic_Magazine.jpg'
|
|
remove_empty_feeds = True
|
|
remove_javascript = True
|
|
max_articles_per_feed = 50
|
|
no_stylesheets = True
|
|
|
|
remove_tags = [dict(name='div', attrs={'class': ['Introduction', 'divider']}),
|
|
dict(name='div', attrs={'id': ['feature', 'podcast']}),
|
|
dict(name='div', attrs={'id': re.compile(
|
|
r'follow.*', re.DOTALL | re.IGNORECASE)}),
|
|
dict(name='hr'),
|
|
]
|
|
|
|
feeds = [
|
|
('The Skeptic', 'http://feeds.feedburner.com/Skepticcom'),
|
|
('E-Skeptic', 'http://www.skeptic.com/eskeptic')
|
|
]
|
|
|
|
def get_browser(self):
|
|
br = BasicNewsRecipe.get_browser(self)
|
|
br.addheaders = [('Accept', 'text/html')]
|
|
return br
|
|
|
|
extra_css = '''
|
|
h1{font-family:Arial,Helvetica,sans-serif; font-weight:bold;font-size:large;}
|
|
h2{font-family:Arial,Helvetica,sans-serif; font-weight:normal;font-size:small;}
|
|
p{font-family:Arial,Helvetica,sans-serif;font-size:small;}
|
|
body{font-family:Helvetica,Arial,sans-serif;font-size:small;}
|
|
'''
|