![]() |
#1 |
Junior Member
![]() Posts: 2
Karma: 10
Join Date: Nov 2017
Device: tolino vision 2
|
New recipe for Telepolis
The current recipe for the german online magazine Telepolis is broken. I tried a new one:
Code:
#!/usr/bin/env python2 # vim:fileencoding=utf-8 from __future__ import unicode_literals, division, absolute_import, print_function from calibre.web.feeds.news import BasicNewsRecipe class Telepolis(BasicNewsRecipe): title = 'Telepolis' __author__ = 'Lutz Epperlein' oldest_article = 7 max_articles_per_feed = 100 auto_cleanup = False language = 'de' feeds = [ ('Telepolis', 'https://www.heise.de/tp/news-atom.xml'), ] remove_tags = [dict(name='p', attrs={'class':'printversion__back-to-article printversion--hide'})] def get_article_url(self, article): return article.link + "?view=print" Regards Lutz |
![]() |
![]() |
![]() |
#2 |
creator of calibre
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 45,160
Karma: 27110894
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
|
|
![]() |
![]() |
Advert | |
|
![]() |
#3 |
Junior Member
![]() Posts: 2
Karma: 10
Join Date: Nov 2017
Device: tolino vision 2
|
Slightly change of Telepolis recipe
I changed the recipe for Telepolis.de again since the publisher changed something too.
Here is the new one: Code:
#!/usr/bin/env python2 # vim:fileencoding=utf-8 from __future__ import unicode_literals, division, absolute_import, print_function from calibre.web.feeds.news import BasicNewsRecipe class Telepolis(BasicNewsRecipe): title = 'Telepolis' __author__ = 'Lutz Epperlein' oldest_article = 10 max_articles_per_feed = 200 auto_cleanup = False language = 'de' scale_news_images = (758, 1024) scale_news_images_to_device = True feeds = [ ('Telepolis', 'https://www.heise.de/tp/news-atom.xml'), ] remove_tags = [dict(name='p', attrs={'class':'printversion__back-to-article printversion--hide'})] def get_article_url(self, article): return article.link + "&view=print" Regards Lutz Last edited by lutze; 11-18-2018 at 12:00 PM. Reason: forgot to mention the scaling |
![]() |
![]() |
![]() |
Tags |
magazine, magazine to epub |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Telepolis recipe broken | New924249 | Recipes | 3 | 05-15-2017 11:15 PM |
Recipe works when mocked up as Python file, fails when converted to Recipe | ode | Recipes | 7 | 09-04-2011 04:57 AM |
Updated Telepolis (News+Artikel) Recipe | syntaxis | Recipes | 8 | 05-15-2011 06:40 AM |
Calibre Recipe: Telepolis (Artikel) (German) | lena_punkt | Calibre | 1 | 09-27-2010 05:03 AM |
Calibre und Telepolis | imp.palpatine | Software | 4 | 08-31-2009 03:06 AM |