mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
Command used: futurize --no-diffs -f libfuturize.fixes.fix_print_with_import -f lib2to3.fixes.fix_throw -f lib2to3.fixes.fix_numliterals -f lib2to3.fixes.fix_except -f lib2to3.fixes.fix_exec -f lib2to3.fixes.fix_raise -f lib2to3.fixes.fix_tuple_params -f lib2to3.fixes.fix_ne -j20 -w -n setup recipes src manual setup.py recipes/*.recipe And manual adjustments of print((...)) -> print(...)
61 lines
2.5 KiB
Plaintext
61 lines
2.5 KiB
Plaintext
from __future__ import print_function
|
|
import re
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1390146870(BasicNewsRecipe):
|
|
title = u'Metro UK'
|
|
language = 'en_GB'
|
|
__author__ = 'D Asbury'
|
|
# 20.6.2015 rss using feed 43 - D Asbury
|
|
# item repeatable string = <h3 class="title"><a href="{%}" {*}<span
|
|
# class="colour">{%}</span></a></h3>
|
|
oldest_article = 1
|
|
max_articles_per_feed = 10
|
|
scale_news_images_to_device = True
|
|
compress_news_images = True
|
|
compress_news_images_max_size = 16
|
|
ignore_duplicate_articles = {'title', 'url'}
|
|
masthead_url = 'http://cdn.images.dailyexpress.co.uk/img/page/express_logo.png'
|
|
auto_cleanup = True
|
|
no_stylesheets = True
|
|
cover_url = 'https://lh4.ggpht.com/aaKY88SbQyB-vK-pgjo22-QVi6dUnOt7aVsRueTU8Fg-zPwOdsDdOVElGM8O0BBDSIsuB9rciyc=w300'
|
|
masthead_url = 'http://s1.wp.com/wp-content/themes/vip/metrouk/img/branding/metro_logo_300x95.png?m=1363331170g'
|
|
|
|
preprocess_regexps = [
|
|
(re.compile(r'\| Metro News', re.IGNORECASE | re.DOTALL), lambda match: ''),
|
|
|
|
]
|
|
|
|
feeds = [
|
|
# 'http://metro.co.uk/news/uk/rss'),
|
|
(u'UK', 'http://feed43.com/5636207287684703.xml'),
|
|
(u'World News', 'http://feed43.com/4555301018714738.xml'),
|
|
(u'Weird', 'http://feed43.com/0483673464615441.xml'),
|
|
(u'Sport', 'http://feed43.com/4655536887165433.xml'),
|
|
(u'Entertainment', 'http://feed43.com/6342124113153248.xml'),
|
|
(u'Lifestyle', 'http://feed43.com/7603240345000555.xml'),
|
|
]
|
|
|
|
# starsons code
|
|
def parse_feeds(self):
|
|
feeds = BasicNewsRecipe.parse_feeds(self)
|
|
for feed in feeds:
|
|
for article in feed.articles[:]:
|
|
print('article.title is: ', article.title)
|
|
if 'VIDEO:' in article.title.upper():
|
|
feed.articles.remove(article)
|
|
|
|
return feeds
|
|
|
|
extra_css = '''
|
|
h1{font-weight:bold;font-size:175%;}
|
|
h2{display: block;margin-left: auto;margin-right: auto;width:125%;font-weight:bold;font-size:150%;}
|
|
#p{font-size:14px;}
|
|
#body{font-size:14px;}
|
|
.figcaption {display: block;margin-left: auto;margin-right: auto;width:100%;font-size:40%;}
|
|
.alignnone{display: block;margin-left: auto;margin-right: auto;width:100%;font-size:40%;}
|
|
.publish-info {font-size:50%;}
|
|
.aligncenter{display: block;margin-left: auto;margin-right: auto;width:100%;}
|
|
'''
|