Read Nightflier's Bookspace on your iPad or Kindle in no time. Click download to load the free ebook on your reader.

Check out all the available public recipes or write your own with these quick start guides. ReadBeam is built on calibre, so everything in the docs and the fora applies here as well.

Download for free »

SF, Fantasy, Books, Knjige

Language: sr

Requires Subscription: No, it's available as free ebook

Schedule Every morning

			  
__license__   = 'GPL v3'
__copyright__ = '2010, Darko Miletic <darko.miletic at gmail.com>'
'''
nightfliersbookspace.blogspot.com
'''

import re
from calibre.web.feeds.news import BasicNewsRecipe

class NightfliersBookspace(BasicNewsRecipe):
    title                 = "Nightflier's Bookspace"
    __author__            = 'Darko Miletic'
    description           = 'SF, Fantasy, Books, Knjige'    
    oldest_article        = 35
    max_articles_per_feed = 100
    language              = 'sr'
    encoding              = 'utf-8'
    no_stylesheets        = True
    use_embedded_content  = True
    publication_type      = 'blog'
    cover_url             = ''    
    extra_css             = """ 
                                @font-face {font-family: "sans1";src:url(res:///opt/sony/ebook/FONT/tt0003m_.ttf)} 
                                body{font-family: "Trebuchet MS",Trebuchet,Verdana,sans1,sans-serif} 
                                .article_description{font-family: sans1, sans-serif} 
                                img{margin-bottom: 0.8em; border: 1px solid #333333; padding: 4px } 
                            """

    conversion_options = {
                          'comment'  : description
                        , 'tags'     : 'SF, fantasy, prevod, blog, Srbija'
                        , 'publisher': 'Ivan Jovanovic'
                        , 'language' : language
                        }

    preprocess_regexps = [(re.compile(u'\u0110'), lambda match: u'\u00D0')]

    feeds = [(u'Posts', u'http://nightfliersbookspace.blogspot.com/feeds/posts/default')]

    def preprocess_html(self, soup):
        for item in soup.findAll(style=True):
            del item['style']
        return self.adeify_images(soup)