mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
class AdvancedUserRecipe1276930924(BasicNewsRecipe):
|
|
title = u'Maximum PC'
|
|
__author__ = 'rty'
|
|
description = 'Maximum PC'
|
|
publisher = 'http://www.maximumpc.com'
|
|
category = 'news, computer, technology'
|
|
language = 'en'
|
|
oldest_article = 30
|
|
max_articles_per_feed = 100
|
|
remove_javascript = True
|
|
use_embedded_content = False
|
|
no_stylesheets = True
|
|
language = 'en'
|
|
feeds = [
|
|
(u'News', u'http://www.maximumpc.com/articles/4/feed'),
|
|
(u'Reviews', u'http://www.maximumpc.com/articles/40/feed'),
|
|
(u'Editors Blog', u'http://www.maximumpc.com/articles/6/feed'),
|
|
(u'How-to', u'http://www.maximumpc.com/articles/32/feed'),
|
|
(u'Features', u'http://www.maximumpc.com/articles/31/feed'),
|
|
(u'From the Magazine', u'http://www.maximumpc.com/articles/72/feed')
|
|
]
|
|
keep_only_tags = [
|
|
dict(name='div', attrs={'class':['node_article', 'node_review_article']}),
|
|
]
|
|
remove_tags = [
|
|
dict(name='div', attrs={'class':'taxonomy'}),
|
|
]
|
|
|