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

  1. #!/usr/bin/env python
  2. # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
  3. from __future__ import with_statement
  4.  
  5. __license__   = 'GPL v3'
  6. __copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
  7. __docformat__ = 'restructuredtext en'
  8.  
  9. from calibre.web.feeds.news import BasicNewsRecipe
  10.  
  11. class H3(BasicNewsRecipe):
  12.      title          = u'H\xedrszerz\u0151'
  13.      oldest_article = 5
  14.      max_articles_per_feed = 50
  15.      language = 'hu'
  16.  
  17.      __author__ = 'Ezmegaz'
  18.  
  19.  
  20.      feeds          = [(u'Belf\xf6ld',
  21.  u'http://www.hirszerzo.hu/rss.belfold.xml'), (u'K\xfclf\xf6ld',
  22.  u'http://www.hirszerzo.hu/rss.kulfold.xml'), (u'Profit',
  23.  u'http://www.hirszerzo.hu/rss.profit.xml'), (u'Shake',
  24.  u'http://www.hirszerzo.hu/rss.shake.xml'), (u'Publicisztika',
  25.  u'http://www.hirszerzo.hu/rss.publicisztika.xml'), (u'Elemz\xe9s',
  26.  u'http://www.hirszerzo.hu/rss.elemzes.xml'), (u'Sorok k\xf6z\xf6tt',
  27.  u'http://www.hirszerzo.hu/rss.sorok_kozott.xml'), (u'Gal\xe9ria',
  28.  u'http://www.hirszerzo.hu/rss.galeria.xml'), (u'Patro',
  29.  u'http://www.hirszerzo.hu/rss.patro.xml')]
  30.  
  31.