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

  1. from calibre.web.feeds.news import BasicNewsRecipe
  2.  
  3. class nprmusic(BasicNewsRecipe):
  4.     title = 'NPR Music Blogs'
  5.     __author__ = 'cix3'
  6.     timefmt = ' [%b %d, %Y]'
  7.     language = 'en'
  8.  
  9.     oldest_article = 30
  10.     max_articles_per_feed = 100
  11.     no_stylesheets = True
  12.  
  13.     remove_tags = [dict(name='div', attrs={'id':['logo', 'comments', 'related_objects', 'inset module', 'footer', 'strip_control', 'header', 'navigation']}), dict(name='hr'), dict(name='img')]
  14.  
  15.     feeds = [
  16.         ('A Blog Supreme', 'http://www.npr.org/blogs/ablogsupreme/index.xml'),
  17.         ('All Songs Considered', 'http://www.npr.org/blogs/allsongs/index.xml'),
  18.         ('Monitor Mix', 'http://www.npr.org/blogs/monitormix/index.xml')]
  19.