I like to introduce and share a new recipe for
No Names, No Jackets. The concept of blindbuch.de is based on an idea published at Forbs
Book Discovery: Give Me Blind Dates With Books from Suw Charman-Anderson. Maybe you will like this kind of introducing books like I do since a couple of days.
Spoiler:
Code:
##
## Written: July 2013
## Last Edited: 2013-07-25
## Version: 1.0
## Last update: 2013-07-25
##
__license__ = 'GPL v3'
__copyright__ = '2013, Armin Geller'
'''
Fetch blindenbuch.de
'''
from calibre.web.feeds.recipes import BasicNewsRecipe
class AdvancedUserRecipe1303841067(BasicNewsRecipe):
title = u'No Names, No Jackets'
__author__ = 'Armin Geller' #AGe 2013-07-25
description = u'One chapter. Just the writing. Discover something new.'
publisher = 'nonamesnojackets.com/'
publication_type = 'ebook news'
tags = 'Books, Literature, E-Books, US'
timefmt = ' [%a, %d %b %Y]'
publication_type = 'Feed'
language = 'en-US'
encoding = 'utf-8'
oldest_article = 14
max_articles_per_feed = 100
no_stylesheets = True
use_embedded_content = False
remove_javascript = True
conversion_options = { 'title' : title,
'comments' : description,
'tags' : tags,
'language' : language,
'publisher' : publisher,
'authors' : publisher,
}
# cover_url = ''
# masthead_url = ''
extra_css = '''
h1,h2 {font-weight:bold;font-size:large;}
.entry-meta {font-size: 1em;text-align: left; font-style: italic}
'''
keep_only_tags = [
dict(name='article')
]
feeds = [(u'No Names, No Jackets', u'http://www.nonamesnojackets.com/feed/')]