Skip to content

Instantly share code, notes, and snippets.

@Glowin
Created February 17, 2013 06:58
Show Gist options
  • Save Glowin/4970501 to your computer and use it in GitHub Desktop.
Save Glowin/4970501 to your computer and use it in GitHub Desktop.
我的 calibre RSS订阅列表
from calibre.web.feeds.news import BasicNewsRecipe
class myFeed (BasicNewsRecipe):
__author__ = u'Glowin <jiangbian66@gmail.com>'
__url__ = 'http://glowface.net'
__version__ = '1.0.1'
__license__ = 'GPL v3'
__copyright__ = u'2013, Glowin <jiangbian66@gmail.com>'
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