calibre/recipes/novaya_gazeta.recipe
Kovid Goyal 64cb4b3fc6
Bump Qt to version 6.7.2
Also fix some pep8 warnings in recipes
2024-08-04 14:26:28 +05:30

18 lines
469 B
Python

#!/usr/bin/env python
# vim:fileencoding=utf-8
from calibre.web.feeds.news import BasicNewsRecipe
class NovayaGazta(BasicNewsRecipe):
title = u'Novaya Gazeta'
__author__ = 'muwa (with fixes by bugmen00t)'
oldest_article = 7
max_articles_per_feed = 100
no_stylesheets = True
conversion_options = {'linearize_tables': True}
remove_attributes = ['style']
language = 'ru'
feeds = [(u'Articles', u'https://novayagazeta.ru/feed/rss')]