mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-25 20:08:21 -04:00
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class FootballUA(BasicNewsRecipe):
|
|
title = 'Football.UA'
|
|
__author__ = 'bugmen00t'
|
|
description = ('\u0421\u043F\u043E\u0440\u0442\u0438\u0432\u043D\u0438\u0439 \u043F\u043E\u0440\u0442\u0430\u043B'
|
|
' \u0432 \u0423\u043A\u0440\u0430\u0457\u043D\u0456,'
|
|
' \u043F\u0440\u0438\u0441\u0432\u044F\u0447\u0435\u043D\u0438\u0439 \u043B\u0438\u0448\u0435 \u0444\u0443\u0442\u0431\u043E\u043B\u0443.')
|
|
publisher = 'United Media Holding group'
|
|
category = 'news'
|
|
cover_url = u'https://s.ill.in.ua/i/news/570x380/212/212438.jpg'
|
|
language = 'uk'
|
|
no_stylesheets = False
|
|
remove_javascript = False
|
|
auto_cleanup = False
|
|
remove_empty_feeds = True
|
|
oldest_article = 3
|
|
max_articles_per_feed = 20
|
|
|
|
remove_tags_before = dict(name='article')
|
|
|
|
remove_tags_after = dict(name='article')
|
|
|
|
remove_tags = [
|
|
dict(name='div', attrs={'class': 'bottom-info'}),
|
|
dict(name='div', attrs={'class': 'social-buttons'})
|
|
]
|
|
|
|
feeds = [
|
|
('\u041D\u043E\u0432\u0438\u043D\u0438', 'https://football.ua/rss2.ashx'),
|
|
]
|