mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
31 lines
1.2 KiB
Python
31 lines
1.2 KiB
Python
#!/usr/bin/env python
|
|
__license__ = 'GPL v3'
|
|
__author__ = 'somedayson & TonytheBookworm, revised by Cynthia Clavey'
|
|
__copyright__ = '2010, Cynthia Clavey cynvision@yahoo.com'
|
|
__version__ = '1.02'
|
|
__date__ = '05, september 2010'
|
|
__docformat__ = 'restructuredtext en'
|
|
from calibre.web.feeds.recipes import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1283666183(BasicNewsRecipe):
|
|
title = u'Journal Gazette Ft. Wayne IN'
|
|
__author__ = 'cynvision'
|
|
oldest_article = 1
|
|
language = 'en'
|
|
max_articles_per_feed = 8
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
use_embedded_content = False
|
|
auto_cleanup = True
|
|
|
|
feeds = [(u'Opinion', u'http://www.journalgazette.net/opinion/rss/'),
|
|
(u'Local News', u'http://www.journalgazette.net/news/local/rss/'),
|
|
(u'Sports', u'http://www.journalgazette.net/sports/rss/'),
|
|
(u'Business', u'http://www.journalgazette.net/business/rss/'),
|
|
(u'Entertainment',
|
|
u'http://www.journalgazette.net/entertainment/rss/'),
|
|
(u'Food', u'http://www.journalgazette.net/food/'),
|
|
(u'Blogs', u'http://www.journalgazette.net/blog/rss/'),
|
|
]
|