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