mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
28 lines
813 B
Plaintext
28 lines
813 B
Plaintext
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class BigGovernmentRecipe(BasicNewsRecipe):
|
|
__license__ = 'GPL v3'
|
|
__author__ = 'kwetal'
|
|
language = 'en'
|
|
version = 1
|
|
|
|
title = u'Big Government'
|
|
publisher = u'Andrew Breitbart'
|
|
category = u'Political blog'
|
|
description = u'Political news from the USA'
|
|
|
|
oldest_article = 30
|
|
max_articles_per_feed = 100
|
|
use_embedded_content = True
|
|
|
|
feeds = [(u'Big Government', u'http://feeds.feedburner.com/breitbart')]
|
|
|
|
conversion_options = {'comments': description, 'tags': category, 'language': 'en',
|
|
'publisher': publisher}
|
|
|
|
extra_css = '''
|
|
body{font-family:verdana,arial,helvetica,geneva,sans-serif;}
|
|
img {float: left; margin-right: 0.5em;}
|
|
'''
|