calibre/recipes/lenta_ru.recipe
2022-02-24 13:40:45 +05:30

18 lines
505 B
Python

#!/usr/bin/env python
# vim:fileencoding=utf-8
from __future__ import unicode_literals
from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1645563203(BasicNewsRecipe):
title = 'Lenta.ru - Новости'
__author__ = 'MrBeef12'
oldest_article = 7
max_articles_per_feed = 100
auto_cleanup = True
language = 'ru'
feeds = [
('Lenta.ru - Новости России и мира сегодня', 'https://lenta.ru/rss/'),
]