mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
14 lines
422 B
Plaintext
14 lines
422 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class BigPicture(BasicNewsRecipe):
|
|
title = u'The Big Picture'
|
|
__author__ = 'Welovelucy'
|
|
description = ('Macro perspective on capital markets, economy, technology'
|
|
' and digital media')
|
|
language = 'en'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
|
|
feeds = [(u'Big Picture', u'http://feeds.feedburner.com/TheBigPicture')]
|