mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
32 lines
887 B
Python
32 lines
887 B
Python
#!/usr/bin/env python
|
|
__license__ = 'GPL v3'
|
|
__author__ = 'Tony Stegall'
|
|
__copyright__ = '2010, Tony Stegall or Tonythebookworm on mobiread.com'
|
|
__version__ = '1.04'
|
|
__date__ = '27, September 2010'
|
|
__docformat__ = 'restructuredtext en'
|
|
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1282101454(BasicNewsRecipe):
|
|
title = 'Nealz Nuze'
|
|
language = 'en'
|
|
__author__ = 'TonytheBookworm'
|
|
description = 'Neal Boortz Show Radio Notes'
|
|
publisher = 'Neal Boortz'
|
|
category = 'news, politics, USA, talkshow'
|
|
oldest_article = 1
|
|
max_articles_per_feed = 100
|
|
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
use_embedded_content = True
|
|
masthead_url = 'http://boortz.com/images/nuze_logo.gif'
|
|
conversion_options = {'linearize_tables': True}
|
|
feeds = [
|
|
('NUZE', 'http://boortz.com/nealz_nuze_rss/rss.xml')
|
|
|
|
]
|