mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
24 lines
715 B
Plaintext
24 lines
715 B
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2012 Levien van Zon <levien@zonnetjes.net>'
|
|
|
|
'''
|
|
Fetch Edge.org conversations
|
|
'''
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class EdgeConversationRSS(BasicNewsRecipe):
|
|
title = u'Edge.org Conversations'
|
|
__author__ = 'levien'
|
|
language = 'en'
|
|
description = '''Edge.org offers "open-minded, free ranging, intellectually
|
|
playful ... an unadorned pleasure in curiosity, a collective expression of
|
|
wonder at the living and inanimate world ... an ongoing and thrilling
|
|
colloquium.'''
|
|
oldest_article = 60
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
auto_cleanup = True
|
|
|
|
feeds = [(u'Edge RSS', u'http://edge.org/feed')]
|