Read National Public Radio 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 »

Language: en

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

Schedule Every morning

			  from calibre.web.feeds.news import BasicNewsRecipe

class AdvancedUserRecipe1257302745(BasicNewsRecipe):
    title          = u'National Public Radio'
    oldest_article = 7
    language = 'en'
    __author__ = 'onyxrev'
    max_articles_per_feed = 100
    no_stylesheets = True

    remove_tags_before = {'class':'storytitle'}
    remove_tags_after =  dict(name='div', attrs={'id':'storytext' })
    remove_tags = [
                     dict(name='body', attrs={'id':'blog'}),
                     dict(name='div', attrs={'class':'enlarge_measure'}),
                     dict(name='div', attrs={'class':'enlarge_html'}),
                     dict(name='div', attrs={'class':'bucketwrap primary'})
                  ]

    feeds          = [(u'National Public Radio', u'http://www.npr.org/rss/rss.php?id=1001')]