mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
62 lines
2.6 KiB
Python
62 lines
2.6 KiB
Python
#!/usr/bin/env python
|
|
__license__ = 'GPL v3'
|
|
__author__ = 'Lorenzo Vigentini'
|
|
__copyright__ = '2009, Lorenzo Vigentini <l.vigentini at gmail.com>'
|
|
__version__ = 'v1.01'
|
|
__date__ = '14, January 2010'
|
|
__description__ = 'Macworld is an independent journal not affiliated with Apple Computer.'
|
|
|
|
'''
|
|
http://www.macworld.co.uk/
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
temp_files = []
|
|
articles_are_obfuscated = True
|
|
|
|
|
|
class macWorld(BasicNewsRecipe):
|
|
__author__ = 'Lorenzo Vigentini'
|
|
description = 'Macworld is an independent journal not affiliated with Apple Computer.'
|
|
cover_url = 'http://images.macworld.com/images/templates/v4/mw-logo.gif'
|
|
|
|
title = 'Mac World '
|
|
publisher = 'IDG Communication'
|
|
category = 'Apple, Mac, video, computing, product reviews, editing, cameras, production'
|
|
|
|
language = 'en'
|
|
timefmt = '[%a, %d %b, %Y]'
|
|
|
|
oldest_article = 7
|
|
max_articles_per_feed = 20
|
|
use_embedded_content = False
|
|
recursion = 10
|
|
|
|
remove_javascript = True
|
|
no_stylesheets = True
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
(u'MacWorld Headlines', u'http://rss.macworld.com/macworld/news'),
|
|
(u'How-To', u'http://rss.macworld.com/macworld/howto'),
|
|
(u'Security', u'http://rss.macworld.com/macworld/topics/security'),
|
|
(u'MAC IT', u'http://rss.macworld.com/macworld/topics/mac_it'),
|
|
(u'Business Mac', u'http://rss.macworld.com/macworld/topics/business_mac'),
|
|
(u'Reviews', u'http://rss.macworld.com/macworld/reviews'),
|
|
(u'Products: Mac', u'http://rss.macworld.com/macworld/products/mac'),
|
|
(u'Products: iPod', u'http://rss.macworld.com/macworld/products/ipod'),
|
|
(u'Products: iPhone', u'http://rss.macworld.com/macworld/products/iphone'),
|
|
(u'Products: Software', u'http://rss.macworld.com/macworld/products/mac/software'),
|
|
(u'OSX Hints', u'http://rss.macworld.com/macworld/weblogs/macosxhints'),
|
|
(u'Mac Gems', u'http://rss.macworld.com/macworld/weblogs/macgems'),
|
|
(u'Mac 911', u'http://rss.macworld.com/macworld/weblogs/mac911'),
|
|
(u'Game Room', u'http://rss.macworld.com/macworld/topics/games'),
|
|
(u'Editos notes', u'http://rss.macworld.com/macworld/weblogs/editors'),
|
|
(u'Creative notes', u'http://rss.macworld.com/macworld/weblogs/creative'),
|
|
(u'Playlist', u'http://rss.macworld.com/macworld/weblogs/ipodblog'),
|
|
(u'Mobile', u'http://rss.macworld.com/macworld/weblogs/mobile'),
|
|
(u'From the lab', u'http://rss.macworld.com/macworld/weblogs/macworldlab'),
|
|
(u'MacUser', u'http://rss.macworld.com/macworld/weblogs/macuser')
|
|
]
|