Created
February 17, 2013 06:58
-
-
Save Glowin/4970501 to your computer and use it in GitHub Desktop.
我的 calibre RSS订阅列表
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from calibre.web.feeds.news import BasicNewsRecipe | |
class myFeed (BasicNewsRecipe): | |
__author__ = u'Glowin <[email protected]>' | |
__url__ = 'http://glowface.net' | |
__version__ = '1.0.1' | |
__license__ = 'GPL v3' | |
__copyright__ = u'2013, Glowin <[email protected]>' | |
title = u'My Fav Feed' | |
description = u'Founded in September 2006, Smashing Magazine delivers useful and innovative information to Web designers and developers. Our aim is to inform our readers about the latest trends and techniques in Web development. We try to persuade you not with the quantity but with the quality of the information we present. Smashing Magazine is and always has been independent.' | |
language = 'en' | |
tags = 'web development, software' | |
oldest_article = 15 | |
remove_empty_feeds = True | |
no_stylesheets = True | |
encoding = 'utf8' | |
cover_url = u'http://media.smashingmagazine.com/themes/smashingv4/images/logo.png' | |
remove_attributes = ['border', 'cellspacing', 'align', 'cellpadding', 'colspan', 'valign', 'vspace', 'hspace', 'alt', 'width', 'height', 'style'] | |
extra_css = u'body div table:first-child {display: none;} img {max-width: 100%; display: block; margin: auto;}' | |
feeds = [ | |
(u'Hacker News', u'http://feeds.feedburner.com/hacker-news-feed-100?format=xml'), | |
(u'Smashing Magazine', u'http://rss1.smashingmagazine.com/feed/'), | |
(u'dot Net', u'http://fulltextrssfeed.com/feeds.feedburner.com/net/topstories'), | |
(u'创业家杂志社', u'http://feed.feedsky.com/chuangyejiazazhi'), | |
(u'月光博客', u'http://feed.williamlong.info/') | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment