mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
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'
|
|
auto_cleanup = True
|
|
|
|
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'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'Save the Date',
|
|
u'http://feeds.feedburner.com/glamour/save-the-date'),
|
|
(u'Vitamin G blog',
|
|
u'http://feeds.glamour.com/glamour/vitamin-g'),
|
|
]
|