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

  1. __license__   = 'GPL v3'
  2. __copyright__ = '2010, Hiroshi Miura <miurahr@linux.com>'
  3. '''
  4. ajiajin.com/blog
  5. '''
  6.  
  7. from calibre.web.feeds.news import BasicNewsRecipe
  8.  
  9. class AjiajinBlog(BasicNewsRecipe):
  10.     title          = u'Ajiajin blog'
  11.     __author__     = 'Hiroshi Miura'
  12.     oldest_article = 5
  13.     publication_type = 'blog'
  14.     max_articles_per_feed = 100
  15.     description    = 'The next generation internet trends in Japan and Asia'
  16.     publisher      = ''
  17.     category       = 'internet, asia, japan'
  18.     language       = 'en'
  19.     encoding      = 'utf-8'
  20.  
  21.     feeds          = [(u'blog', u'http://feeds.feedburner.com/Asiajin')]
  22.  
  23.  
  24.