1__license__ = 'GPL v3'
2__copyright__ = '2012 Levien van Zon <levien@zonnetjes.net>'
3
4'''
5Fetch Edge.org conversations
6'''
7from calibre.web.feeds.news import BasicNewsRecipe
8
9
10class EdgeConversationRSS(BasicNewsRecipe):
11    title = u'Edge.org Conversations'
12    __author__ = 'levien'
13    language = 'en'
14    description = '''Edge.org offers "open-minded, free ranging, intellectually
15    playful ... an unadorned pleasure in curiosity, a collective expression of
16    wonder at the living and inanimate world ... an ongoing and thrilling
17    colloquium.'''
18    oldest_article = 60
19    max_articles_per_feed = 100
20    no_stylesheets = True
21    auto_cleanup = True
22
23    feeds = [(u'Edge RSS', u'http://edge.org/feed')]
24