Read The Week 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 »

The best of the US and international media. Daily coverage of commentary and analysis of the day's events, as well as arts, entertainment, people and gossip, and political cartoons.

Language: en

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

Schedule Every morning

			  __license__   = 'GPL v3'
__copyright__ = '2010, JOlo'
'''
www.theweek.com
'''

from calibre.web.feeds.news import BasicNewsRecipe

class TheWeek(BasicNewsRecipe):
    title                 = 'The Week Magazine'
    __author__            = 'Jim Olo'
    description           = "The best of the US and international media.  Daily coverage of commentary and analysis of the day's events, as well as arts, entertainment, people and gossip, and political cartoons."
    publisher             = 'The Week Publications, Inc.'
    masthead_url           = 'http://test.theweek.com/images/logo_theweek.gif'
    cover_url              = masthead_url
    category              = 'news, politics, USA'
    oldest_article        = 7
    max_articles_per_feed = 100
    no_stylesheets        = True
    encoding              = 'utf-8'
    use_embedded_content  = False
    language              = 'en'
    auto_cleanup = True
    feeds          =  [
               (u'News-Opinion', u'http://theweek.com/section/index/news_opinion.rss'),
               (u'Business', u'http://theweek.com/section/index/business.rss'),
               (u'Arts-Life', u'http://theweek.com/section/index/arts_life.rss'),
               (u'Cartoons', u'http://theweek.com/section/index/cartoon_wit/0/all-cartoons.rss')
                      ]