ZackZack.at by Dirk Gomez

Fixes #1921346 [Add recipe for zackzack.at](https://bugs.launchpad.net/calibre/+bug/1921346)
This commit is contained in:
Kovid Goyal 2021-03-25 14:21:59 +05:30
parent d344114f1e
commit 530ca249b5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

27
recipes/zackzack.recipe Executable file
View File

@ -0,0 +1,27 @@
#!/usr/bin/env python
# vim:fileencoding=utf-8
# License: GPLv3 Copyright: 2016, Kovid Goyal <kovid at kovidgoyal.net>
from __future__ import absolute_import, division, print_function, unicode_literals
from calibre.web.feeds.news import BasicNewsRecipe
class Real_world_economics_review(BasicNewsRecipe):
title = 'ZackZack.at'
oldest_article = 7
max_articles_per_feed = 100
use_embedded_content = False
__author__ = 'Dirk Gomez'
language = 'de_AT'
no_stylesheets = True
keep_only_tags = [
dict(name='h1', attrs={'class': 'av-special-heading-tag'}),
dict(name='div', attrs={'class': 'av-subheading'}),
dict(name='div', attrs={'class': 'avia_textblock'}),
]
feeds = [(u'Zack Zack',
u'https://zackzack.at/feed/')]