mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Update strange_horizons.recipe
This commit is contained in:
parent
417c05ea41
commit
539e87ec28
@ -1,12 +1,15 @@
|
|||||||
import re
|
#!/usr/bin/env python
|
||||||
from collections import defaultdict
|
|
||||||
|
|
||||||
from calibre.web.feeds.news import BasicNewsRecipe, classes
|
from calibre.web.feeds.news import BasicNewsRecipe, classes
|
||||||
|
|
||||||
|
|
||||||
class StrangeHorizons(BasicNewsRecipe):
|
class StrangeHorizons(BasicNewsRecipe):
|
||||||
title = 'Strange Horizons'
|
title = 'Strange Horizons'
|
||||||
description = 'A magazine of speculative fiction and related nonfiction. Best downloaded on weekends'
|
description = (
|
||||||
|
'Strange Horizons is a weekly magazine of and about speculative fiction. '
|
||||||
|
'We publish fiction, poetry, reviews, essays, interviews, roundtable '
|
||||||
|
'discussions, and art.'
|
||||||
|
)
|
||||||
__author__ = 'unkn0wn'
|
__author__ = 'unkn0wn'
|
||||||
no_stylesheets = True
|
no_stylesheets = True
|
||||||
use_embedded_content = False
|
use_embedded_content = False
|
||||||
@ -14,55 +17,40 @@ class StrangeHorizons(BasicNewsRecipe):
|
|||||||
language = 'en'
|
language = 'en'
|
||||||
remove_attributes = ['style', 'height', 'width']
|
remove_attributes = ['style', 'height', 'width']
|
||||||
masthead_url = 'http://strangehorizons.com/wordpress/wp-content/themes/strangehorizons/images/sh-logo.jpg'
|
masthead_url = 'http://strangehorizons.com/wordpress/wp-content/themes/strangehorizons/images/sh-logo.jpg'
|
||||||
|
ignore_duplicate_articles = {'url'}
|
||||||
|
resolve_internal_links = True
|
||||||
|
oldest_article = 7
|
||||||
|
|
||||||
extra_css = '''
|
extra_css = """
|
||||||
.author-biographies, .content-warning-container-ltr, .category {font-size:small; font-style:italic; font-color:#404040;}
|
.author-biographies, .content-warning-container-ltr, .category {font-size:small; font-style:italic; font-color:#404040;}
|
||||||
.byline {font-size:small; font-color:#202020;}
|
.byline {font-size:small; font-color:#202020;}
|
||||||
.title {font-size:large; text-align:center;}
|
img {display:block; margin:0 auto;}
|
||||||
'''
|
"""
|
||||||
|
|
||||||
|
recipe_specific_options = {
|
||||||
|
'days': {
|
||||||
|
'short': 'Oldest article to download from this news source. In days ',
|
||||||
|
'long': 'For example, 0.5, gives you articles from the past 12 hours',
|
||||||
|
'default': str(oldest_article),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def __init__(self, *args, **kwargs):
|
||||||
|
BasicNewsRecipe.__init__(self, *args, **kwargs)
|
||||||
|
d = self.recipe_specific_options.get('days')
|
||||||
|
if d and isinstance(d, str):
|
||||||
|
self.oldest_article = float(d)
|
||||||
|
|
||||||
ignore_duplicate_articles = {'url'}
|
ignore_duplicate_articles = {'url'}
|
||||||
|
|
||||||
keep_only_tags = [
|
keep_only_tags = remove_tags_after = [dict(name='div', attrs={'class': 'post'})]
|
||||||
classes('post-container')
|
|
||||||
]
|
|
||||||
|
|
||||||
remove_tags = [
|
remove_tags = [dict(name='button'), classes('font-size sharedaddy comments-form-row')]
|
||||||
dict(name='button'),
|
|
||||||
classes('font-size sharedaddy comments-form-row')
|
|
||||||
]
|
|
||||||
|
|
||||||
def parse_index(self):
|
def preprocess_html(self, soup):
|
||||||
main = self.index_to_soup('http://strangehorizons.com/issue/')
|
h1 = soup.find(attrs={'class': 'title'})
|
||||||
issue = main.find(attrs={'class':lambda x: x and 'current-issue-widget' in x.split()})
|
if h1 and h1.find('a'):
|
||||||
current = issue.find('a', href=lambda x: x and x.startswith('http://strangehorizons.com/issue/'))
|
h1.a.name = 'h1'
|
||||||
date = issue.find(**classes('date'))
|
return soup
|
||||||
self.timefmt = ' [' + self.tag_to_string(date) + ']'
|
|
||||||
self.log('Downloading Issue:', self.timefmt, current['href'])
|
|
||||||
soup = self.index_to_soup(current['href'])
|
|
||||||
|
|
||||||
feeds_dict = defaultdict(list)
|
feeds = [('Articles', 'http://strangehorizons.com/wordpress/feed/')]
|
||||||
|
|
||||||
for art in soup.findAll('div', attrs={'class':'article'}):
|
|
||||||
for ti in art.findAll(**classes('title')):
|
|
||||||
if a := ti.find('a', href=True):
|
|
||||||
url = a['href']
|
|
||||||
title = self.tag_to_string(ti).strip()
|
|
||||||
|
|
||||||
sec = 'Articles'
|
|
||||||
if cat := art.find(**classes('category')):
|
|
||||||
sec = self.tag_to_string(cat).strip()
|
|
||||||
|
|
||||||
desc = ''
|
|
||||||
if exp := ti.find_next_sibling(**classes('excerpt')):
|
|
||||||
desc = self.tag_to_string(exp) + desc
|
|
||||||
desc = re.sub(r'\d{5} ', '', desc)
|
|
||||||
if auth := ti.find_next_sibling(**classes('author')):
|
|
||||||
desc = self.tag_to_string(auth) + ' | ' + desc
|
|
||||||
|
|
||||||
if not title or not url:
|
|
||||||
continue
|
|
||||||
|
|
||||||
self.log(sec, '\n\t', title, '\n\t', desc, '\n\t\t', url)
|
|
||||||
feeds_dict[sec].append({'title': title, 'url': url, 'description': desc})
|
|
||||||
return list(feeds_dict.items())
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user