mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
__license__ = 'GPL v3'
|
|
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
|
|
|
|
'''
|
|
Fetch darknet.
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class darknet(BasicNewsRecipe):
|
|
|
|
title = 'darknet'
|
|
description = 'Ethical hacking and security news'
|
|
__author__ = 'Oliver Niesner'
|
|
language = 'en'
|
|
|
|
use_embedded_content = False
|
|
timefmt = ' [%b %d %Y]'
|
|
max_articles_per_feed = 40
|
|
no_stylesheets = True
|
|
oldest_article = 180
|
|
|
|
remove_tags = [dict(id='navi_top'),
|
|
dict(id='navi_bottom'),
|
|
dict(id='nav'),
|
|
dict(id='top-ad'),
|
|
dict(id='login_suche'),
|
|
dict(id='navi_login'),
|
|
dict(id='breadcrumb'),
|
|
dict(id='subtitle'),
|
|
dict(id='bannerzone'),
|
|
dict(name='span', attrs={'class': 'rsaquo'}),
|
|
dict(name='span', attrs={'class': 'next'}),
|
|
dict(name='span', attrs={'class': 'prev'}),
|
|
dict(name='span', attrs={'class': 'comments'}),
|
|
dict(name='div', attrs={'class': 'news_logo'}),
|
|
dict(name='div', attrs={'class': 'nextprev'}),
|
|
dict(name='div', attrs={'class': 'tags'}),
|
|
dict(name='div', attrs={'class': 'Nav'}),
|
|
dict(name='p', attrs={'class': 'news_option'}),
|
|
dict(name='p', attrs={'class': 'news_foren'})]
|
|
remove_tags_after = [dict(name='div', attrs={'class': 'meta-footer'})]
|
|
|
|
feeds = [('darknet', 'http://feedproxy.google.com/darknethackers')]
|