mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
23 lines
884 B
Python
23 lines
884 B
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
from __future__ import unicode_literals, division, absolute_import, print_function
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1434052728(BasicNewsRecipe):
|
|
title = '\u0415\u043a\u0441\u043f\u0440\u0435\u0441'
|
|
oldest_article = 7
|
|
max_articles_per_feed = 100
|
|
__author__ = 'rpalyvoda'
|
|
language = 'uk'
|
|
cover_url = 'https://upload.wikimedia.org/wikipedia/uk/7/7b/Expres-logo.png'
|
|
masthead_url = 'https://upload.wikimedia.org/wikipedia/uk/7/7b/Expres-logo.png'
|
|
auto_cleanup = True
|
|
|
|
feeds = [
|
|
('\u0413\u043e\u043b\u043e\u0432\u043d\u0456 \u043d\u043e\u0432\u0438\u043d\u0438',
|
|
'http://expres.ua/rss.xml'),
|
|
('\u041b\u044c\u0432\u0456\u0432\u0441\u044c\u043a\u0456 \u043d\u043e\u0432\u0438\u043d\u0438',
|
|
'http://lvivexpres.com/rss.xml'),
|
|
]
|