mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2008-2010, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
www.themoscowtimes.com
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class Moscowtimes(BasicNewsRecipe):
|
|
title = 'The Moscow Times'
|
|
__author__ = 'Darko Miletic and Sujata Raman'
|
|
description = 'The Moscow Times is a daily English-language newspaper featuring objective, reliable news on business, politics, sports and culture in Moscow, in Russia and the former Soviet Union (CIS).' # noqa
|
|
category = 'Russia, Moscow, Russian news, Moscow news, Russian newspaper, daily news, independent news, reliable news, USSR, Soviet Union, CIS, Russian politics, Russian business, Russian culture, Russian opinion, St Petersburg, Saint Petersburg' # noqa
|
|
publisher = 'The Moscow Times'
|
|
language = 'en'
|
|
oldest_article = 2
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
remove_empty_feeds = True
|
|
publication_type = 'newspaper'
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
(u'Top Stories', u'https://themoscowtimes.com/feeds/main.xml'),
|
|
(u'Moscow', u'https://themoscowtimes.com/feeds/moscow.xml'),
|
|
(u'Russia', u'https://themoscowtimes.com/feeds/russia.xml'),
|
|
(u'World', u'https://themoscowtimes.com/feeds/world.xml'),
|
|
(u'Business', u'https://themoscowtimes.com/feeds/business.xml'),
|
|
(u'Opinion', u'https://themoscowtimes.com/feeds/opinion.xml')
|
|
]
|