Read People/US Magazine 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 »

Headlines from People and US Magazine

Language: en

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

Schedule Every morning

			  #!/usr/bin/env  python
__license__   = 'GPL v3'
'''
'''
from calibre.web.feeds.recipes import BasicNewsRecipe

class PeopleMag(BasicNewsRecipe):

    title       = 'People/US Magazine Mashup'
    __author__  = 'BrianG'
    language = 'en'
    description = 'Headlines from People and US Magazine'
    no_stylesheets        = True
    use_embedded_content  = False
    oldest_article = 2
    max_articles_per_feed = 50
    use_embedded_content = False

    no_stylesheets = True
    auto_cleanup = True
    auto_cleanup_keep = '//div[@id="article-image"]'


    feeds = [
        ('PEOPLE Headlines', 'http://feeds.people.com/people/headlines'),
        ('US Headlines', 'http://www.usmagazine.com/celebrity_news/rss')
        ]