Update Glasgow Herald

This commit is contained in:
Kovid Goyal 2020-03-15 17:31:29 +05:30
parent 199ed3daf5
commit a7d1f4c88f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -1,3 +1,9 @@
#!/usr/bin/env python
# vim:fileencoding=utf-8
# License: GPLv3 Copyright: 2015, Kovid Goyal <kovid at kovidgoyal.net>
from __future__ import absolute_import, division, print_function, unicode_literals
from calibre.web.feeds.news import BasicNewsRecipe from calibre.web.feeds.news import BasicNewsRecipe
@ -15,10 +21,12 @@ class GlasgowHerald(BasicNewsRecipe):
auto_cleanup = True auto_cleanup = True
feeds = [ feeds = [
(u'News', u'http://www.heraldscotland.com/cmlink/1.758'), (u'News', u'https://www.heraldscotland.com/news/rss/'),
(u'Sport', u'http://www.heraldscotland.com/cmlink/1.761'), (u'Sport', u'https://www.heraldscotland.com/sport/rss/'),
(u'Business', u'http://www.heraldscotland.com/cmlink/1.763'), (u'Business', u'https://www.heraldscotland.com/business_hq/rss/'),
(u'Life & Style', u'http://www.heraldscotland.com/cmlink/1.770'), (u'Lifestyle', u'https://www.heraldscotland.com/life_style/rss/'),
(u'Arts & Entertainment', (u'Arts & Entertainment', u'https://www.heraldscotland.com/arts_ents/rss/',),
u'http://www.heraldscotland.com/cmlink/1.768',), (u'Politics', u'https://www.heraldscotland.com/politics/rss/'),
(u'Columnists', u'http://www.heraldscotland.com/cmlink/1.658574')] (u'Columnists', u'https://www.heraldscotland.com/opinion/columnists/rss/')
]