Read Glamour 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 AdvancedUserRecipe1305547242(BasicNewsRecipe):
    title          = u'Glamour (US)'
    oldest_article = 21
    max_articles_per_feed = 100
    no_stylesheets         = True
    use_embedded_content   = False
    language = 'en'
    remove_javascript      = True
    __author__  = 'Anonymous'
    remove_tags = [dict(name='div', attrs={'class':'articles_footer', 'class':'printoptions'})]

    def print_version(self, url):
        return url + '?printable=true'

    def preprocess_html(self, soup):
        for alink in soup.findAll('a'):
            if alink.string is not None:
               tstr = alink.string
               alink.replaceWith(tstr)
        return soup

    feeds  = [	(u'All Fashion', u'http://feeds.glamour.com/glamour/all_fashion'),
                    (u'All Beauty', u'http://feeds.glamour.com/glamour/all_beauty'),
                    (u'All Sex, Love & Life', u'http://feeds.glamour.com/glamour/sex_love_life'),
                    (u'All Health & Fitness', u'http://feeds.glamour.com/glamour/health_fitness'),
                    (u'Shopping', u'http://feeds.glamour.com/glamour/shopping'),
                    (u'Slaves to Fashion blog', u'http://feeds.glamour.com/glamour/slavestofashion'),
                    (u'The Girls in the Beauty Department', u'http://feeds.glamour.com/glamour/thegirlsinthebeautydepartment'),
                    (u'Smitten blog', u'http://feeds.glamour.com/glamour/smitten'),
                    (u'Save the Date', u'http://feeds.feedburner.com/glamour/save-the-date'),
                    (u'Single-ish blog', u'http://feeds.glamour.com/glamour/glamoursingle-ish'),
                    (u'Save the Date', u'http://feeds.feedburner.com/glamour/save-the-date'),
                    (u'Vitamin G blog', u'http://feeds.glamour.com/glamour/vitamin-g'),
                    (u'Margarita Shapes Up blog', u'http://feeds.glamour.com/glamour/margaritashapesup'),
                    (u'Little Miss Fortune blog', u'http://feeds.glamour.com/glamour/little-miss-fortune'),
 ]