mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
Fixes #1908786 [Updated recipe for ZeroHedge](https://bugs.launchpad.net/calibre/+bug/1908786)
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
# -*- mode: python; coding: utf-8; -*-
|
|
# vim: set syntax=python fileencoding=utf-8
|
|
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = '2011-2020, Darko Miletic <darko.miletic at gmail.com>'
|
|
'''
|
|
www.zerohedge.com
|
|
'''
|
|
|
|
from calibre.web.feeds.recipes import BasicNewsRecipe
|
|
|
|
|
|
class ZeroHedge(BasicNewsRecipe):
|
|
title = 'Zero Hedge'
|
|
__author__ = 'Darko Miletic'
|
|
description = 'On a long enough timeline the survival rate for everyone drops to zero'
|
|
oldest_article = 10
|
|
max_articles_per_feed = 100
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
encoding = 'utf8'
|
|
publisher = 'zero hedge'
|
|
category = 'news, USA, world, economy, politics'
|
|
language = 'en'
|
|
masthead_url = 'https://www.zerohedge.com/images/logo/full.svg'
|
|
auto_cleanup = True
|
|
auto_cleanup_keep = '//*[@class="main-content"]'
|
|
publication_type = 'blog'
|
|
extra_css = 'body{ font-family: sans-serif }'
|
|
|
|
conversion_options = {
|
|
'comments': description, 'tags': category, 'language': language, 'publisher': publisher
|
|
}
|
|
|
|
feeds = [(u'Articles', u'http://feeds.feedburner.com/zerohedge/feed')]
|