mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class TechnologyReview(BasicNewsRecipe):
|
|
title = u'Technology Review'
|
|
__author__ = 'rty'
|
|
description = 'MIT Technology Magazine'
|
|
publisher = 'Technology Review Inc.'
|
|
category = 'Technology, Innovation, R&D'
|
|
language = 'en'
|
|
oldest_article = 14
|
|
max_articles_per_feed = 100
|
|
No_stylesheets = True
|
|
auto_cleanup = True
|
|
extra_css = """
|
|
.ArticleBody {font: normal; text-align: justify}
|
|
.headline {font: bold x-large}
|
|
.subheadline {font: italic large}
|
|
"""
|
|
feeds = [
|
|
(u'Computing', u'http://feeds.technologyreview.com/technology_review_Computing'),
|
|
(u'Web', u'http://feeds.technologyreview.com/technology_review_Web'),
|
|
(u'Communications', u'http://feeds.technologyreview.com/technology_review_Communications'),
|
|
(u'Energy', u'http://feeds.technologyreview.com/technology_review_Energy'),
|
|
(u'Materials', u'http://feeds.technologyreview.com/technology_review_Materials'),
|
|
(u'Biomedicine', u'http://feeds.technologyreview.com/technology_review_Biotech'),
|
|
(u'Business', u'http://feeds.technologyreview.com/technology_review_Biztech')
|
|
]
|
|
|