calibre/recipes/glasgow_herald.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

25 lines
800 B
Plaintext

from calibre.web.feeds.news import BasicNewsRecipe
class GlasgowHerald(BasicNewsRecipe):
title = u'Glasgow Herald'
oldest_article = 1
max_articles_per_feed = 100
no_stylesheets = True
language = 'en_GB'
__author__ = 'Kovid Goyal'
use_embedded_content = False
no_stylesheets = True
auto_cleanup = True
feeds = [
(u'News', u'http://www.heraldscotland.com/cmlink/1.758'),
(u'Sport', u'http://www.heraldscotland.com/cmlink/1.761'),
(u'Business', u'http://www.heraldscotland.com/cmlink/1.763'),
(u'Life & Style', u'http://www.heraldscotland.com/cmlink/1.770'),
(u'Arts & Entertainment',
u'http://www.heraldscotland.com/cmlink/1.768',),
(u'Columnists', u'http://www.heraldscotland.com/cmlink/1.658574')]