mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class YemenTimesRecipe(BasicNewsRecipe):
|
|
__license__ = 'GPL v3'
|
|
__author__ = 'kwetal'
|
|
language = 'en_YE'
|
|
country = 'YE'
|
|
version = 1
|
|
|
|
title = u'Yemen Times'
|
|
publisher = u'yementimes.com'
|
|
category = u'News, Opinion, Yemen'
|
|
description = u'Award winning weekly from Yemen, promoting press freedom, professional journalism and the defense of human rights.'
|
|
|
|
oldest_article = 10
|
|
max_articles_per_feed = 100
|
|
use_embedded_content = False
|
|
encoding = 'utf-8'
|
|
|
|
remove_empty_feeds = True
|
|
no_stylesheets = True
|
|
remove_javascript = True
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
('News',
|
|
'http://www.yementimes.com/?tpl=1341'),
|
|
]
|
|
|
|
extra_css = '''
|
|
body {font-family:verdana, arial, helvetica, geneva, sans-serif;}
|
|
div.yemen_byline {font-size: medium; font-weight: bold;}
|
|
div.yemen_date {font-size: small; color: #666666; margin-bottom: 0.6em;}
|
|
.yemen_caption {font-size: x-small; font-style: italic; color: #696969;}
|
|
'''
|
|
|
|
conversion_options = {'comments': description, 'tags': category, 'language': 'en',
|
|
'publisher': publisher, 'linearize_tables': True}
|