__license__ = 'GPL v3' __copyright__ = '2010, Darko Miletic ' ''' rollingstone.com ''' from calibre.web.feeds.news import BasicNewsRecipe class RollingStone(BasicNewsRecipe): title = 'Rolling Stone Magazine - free content' __author__ = 'Darko Miletic' description = 'Rolling Stone Magazine features music, album and artist news, movie reviews, political, economic and pop culture commentary, videos, photos, and more.' # noqa publisher = 'Werner Media inc.' category = 'news, music, USA, world' oldest_article = 15 max_articles_per_feed = 200 no_stylesheets = True encoding = 'utf8' use_embedded_content = False language = 'en' remove_empty_feeds = True publication_type = 'magazine' auto_cleanup = True feeds = [ (u'All News', u'http://www.rollingstone.com/siteServices/rss/allNews'), ]