calibre/recipes/journalgazette.recipe
Kovid Goyal 29cd8d64ea
Change shebangs to python from python2
Also remove a few other miscellaneous references to python2
2020-08-22 18:47:51 +05:30

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/'),
]