mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
28 lines
829 B
Plaintext
28 lines
829 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
'''
|
|
Tillsonburg/Norfolk County newspapers Calibre Recipe
|
|
'''
|
|
|
|
|
|
class TillsonburgNorfolkCounty(BasicNewsRecipe):
|
|
title = u'Tillsonburg/Norfolk County'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
auto_cleanup = True
|
|
__author__ = u'Eric Coolman'
|
|
publisher = u'canoe.ca'
|
|
description = u'Norfolk County and Tillsonburg, Ontario Canada Newspapers'
|
|
category = u'News, Ontario, Canada'
|
|
remove_javascript = True
|
|
use_embedded_content = False
|
|
no_stylesheets = True
|
|
language = 'en_CA'
|
|
encoding = 'utf-8'
|
|
|
|
feeds = [
|
|
(u'Simcoe Reformer', u'http://www.simcoereformer.ca/rss/'),
|
|
(u'Delhi News-Record', u'http://www.delhinewsrecord.com/rss/'),
|
|
(u'Tilsonburg News', u'http://www.tillsonburgnews.com/rss/')
|
|
]
|