mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
29 lines
893 B
Plaintext
29 lines
893 B
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2010, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
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'),
|
|
]
|