home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Calibre / calibre-0.8.18.msi / file_280 / boortz.recipe < prev    next >
Encoding:
Text File  |  2011-09-09  |  941 b   |  31 lines

  1. #!/usr/bin/env  python
  2. __license__   = 'GPL v3'
  3. __author__    = 'Tony Stegall'
  4. __copyright__ = '2010, Tony Stegall or Tonythebookworm on mobiread.com'
  5. __version__   = '1.04'
  6. __date__      = '27, September 2010'
  7. __docformat__ = 'restructuredtext en'
  8.  
  9.  
  10. from calibre.web.feeds.news import BasicNewsRecipe
  11.  
  12. class AdvancedUserRecipe1282101454(BasicNewsRecipe):
  13.     title = 'Nealz Nuze'
  14.     language = 'en'
  15.     __author__ = 'TonytheBookworm'
  16.     description = 'Neal Boortz Show Radio Notes'
  17.     publisher = 'Neal Boortz'
  18.     category = 'news, politics, USA, talkshow'
  19.     oldest_article = 1
  20.     max_articles_per_feed = 100
  21.  
  22.     no_stylesheets = True
  23.     remove_javascript   = True
  24.     use_embedded_content = True
  25.     masthead_url = 'http://boortz.com/images/nuze_logo.gif'
  26.     conversion_options = {'linearize_tables' : True}
  27.     feeds          = [
  28.                       ('NUZE', 'http://boortz.com/nealz_nuze_rss/rss.xml')
  29.  
  30.                     ]
  31.