Read Telepolis 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.
Telepolis ist ein Onlinemagazin des Heise Zeitschriften Verlag. Das Netzmagazin, das bis 1998 auch als Printausgabe erschien, reflektiert nach eigener Darstellung „kritisch die gesellschaftlichen, politischen, wissenschaftlichen, kulturellen und künstlerischen Aspekte des digitalen Zeitalters“.
Language: de
Requires Subscription: No, it's available as free ebook
Schedule Every morning
# -*- coding: utf-8 -*-
__license__ = 'GPL v3'
__copyright__ = '2009, Gerhard Aigner <gerhard.aigner at gmail.com>'
''' http://www.derstandard.at - Austrian Newspaper '''
import re
from calibre.web.feeds.news import BasicNewsRecipe
class TelepolisArtikel(BasicNewsRecipe):
title = u'Telepolis (Artikel)'
__author__ = 'Gerhard Aigner'
publisher = 'Heise Zeitschriften Verlag GmbH & Co KG'
category = 'news'
description = 'Telepolis Artikel'
language = 'de_AT'
oldest_article = 7
max_articles_per_feed = 100
recursion = 0
no_stylesheets = True
use_embedded_content = False
remove_empty_feeds = True
remove_tags_before = dict(name='h1')
remove_tags = [dict(name='img')]
feeds = [(u'Artikel', u'http://www.heise.de/tp/rss/news-a.rdf')]
preprocess_regexps = [(re.compile(r'<a[^>]*>', re.DOTALL|re.IGNORECASE), lambda match: ''),
(re.compile(r'</a>', re.DOTALL|re.IGNORECASE), lambda match: ''),]
html2lrf_options = [
'--comment' , description
, '--category' , category
, '--publisher', publisher]
html2epub_options = 'publisher="' + publisher + '"\ncomments="' + description + '"\ntags="' + category + '"'
def print_version(self, url):
p = re.compile(r'\d{5}', re.DOTALL|re.IGNORECASE)
m = p.search(url)
return "http://www.heise.de/bin/tp/issue/r4/dl-artikel2.cgi?artikelnr="+ m.group() +"&mode=print"