mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-04 22:57:01 +01:00
The Big Picture and Auto industry news by welovelucy
This commit is contained in:
parent
daf78d5119
commit
d18a155ea7
2 changed files with 28 additions and 0 deletions
16
recipes/auto_blog.recipe
Normal file
16
recipes/auto_blog.recipe
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from calibre.web.feeds.news import BasicNewsRecipe
|
||||
|
||||
class AutoBlog(BasicNewsRecipe):
|
||||
title = u'Auto Blog'
|
||||
__author__ = 'Welovelucy'
|
||||
language = 'en'
|
||||
description = 'Auto industry news'
|
||||
oldest_article = 7
|
||||
max_articles_per_feed = 100
|
||||
|
||||
feeds = [(u'AutoBlog', u'http://www.autoblog.com/rss.xml')]
|
||||
|
||||
def print_version(self, url):
|
||||
return url + 'print/'
|
||||
|
||||
|
||||
12
recipes/big_picture.recipe
Normal file
12
recipes/big_picture.recipe
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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')]
|
||||
Loading…
Reference in a new issue