Read darknet on your iPad or Kindle in no time. Click download to load the free ebook on your reader.

Check out all the available public recipes or write your own with these quick start guides. ReadBeam is built on calibre, so everything in the docs and the fora applies here as well.

Download for free »

Ethical hacking and security news

Language: en

Requires Subscription: No, it's available as free ebook

Schedule Every morning

			  __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') ]