mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
48 lines
2.4 KiB
Plaintext
48 lines
2.4 KiB
Plaintext
from __future__ import with_statement
|
|
__license__ = 'GPL 3'
|
|
__copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
|
|
__docformat__ = 'restructuredtext en'
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class ChicagoTribune(BasicNewsRecipe):
|
|
|
|
title = 'The Hartford Courant'
|
|
__author__ = 'Being and Sujata Raman'
|
|
description = 'Politics, local and business news from Hartford'
|
|
language = 'en'
|
|
use_embedded_content = False
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
('Breaking News', 'http://feeds.feedburner.com/courant-breaking-news/'),
|
|
('Nation/World News', 'http://feeds.feedburner.com/courant-nation-world/'),
|
|
('Connecticut News', 'http://feeds.feedburner.com/courant-connecticut-news/'),
|
|
('Hartford News', 'http://feeds.feedburner.com/courant-hartford/'),
|
|
('West Hartford News', 'http://feeds.feedburner.com/courant-west-hartford/'),
|
|
('Bristol', 'http://feeds.feedburner.com/courant-bristol/'),
|
|
('Politics', 'http://feeds.feedburner.com/courant-politics/'),
|
|
('Opinion', 'http://feeds.feedburner.com/courant-opinion/'),
|
|
('Editorials', 'http://feeds.feedburner.com/courant-editorials/'),
|
|
('Letters', 'http://feeds.feedburner.com/courant-letters/'),
|
|
('Bob Englehart', 'http://feeds2.feedburner.com/BobEnglehartEnglehartsView'),
|
|
('Business', 'http://feeds.feedburner.com/courant-business/'),
|
|
('Sports', 'http://feeds.feedburner.com/courant-sports/'),
|
|
('Features', 'http://feeds.feedburner.com/courant-features/'),
|
|
('Consumer', 'http://feeds.feedburner.com/courant-consumer/'),
|
|
('Shopping', 'http://feeds.feedburner.com/courant-shopping/'),
|
|
('Arts & Theater', 'http://feeds.feedburner.com/courant-entertainment/'),
|
|
('Entertainment', 'http://feeds.feedburner.com/courant-stage/'),
|
|
('Music', 'http://feeds.feedburner.com/courant-music/'),
|
|
('TV', 'http://feeds.feedburner.com/courant-tv/'),
|
|
('Movies', 'http://feeds.feedburner.com/courant-movies/'),
|
|
('Outdoors', 'http://feeds.feedburner.com/courant-outdoors/'),
|
|
('Peter Marteka', 'http://feeds.feedburner.com/courant-marteka-column/'),
|
|
('Jim Shea', 'http://feeds.feedburner.com/courant-jim-shea-column/'),
|
|
('Tom Condon', 'http://feeds.feedburner.com/courant-tom-condon-column/'),
|
|
('Colin McEnroe', 'http://feeds.feedburner.com/courant-colin-mcenroe-column/'),
|
|
]
|