mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
18 lines
469 B
Python
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')]
|