mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
131 lines
5.2 KiB
Python
131 lines
5.2 KiB
Python
#!/usr/bin/env python
|
|
'''
|
|
nautil.us
|
|
'''
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe, classes
|
|
|
|
|
|
class Nautilus(BasicNewsRecipe):
|
|
title = 'Nautilus Magazine'
|
|
language = 'en_US'
|
|
__author__ = 'unkn0wn'
|
|
oldest_article = 30 # days
|
|
max_articles_per_feed = 50
|
|
description = (
|
|
'Nautilus is a different kind of science magazine. Our stories take you into the depths'
|
|
' of science and spotlight its ripples in our lives and cultures. We believe any subject in science,'
|
|
' no matter how complex, can be explained with clarity and vitality.'
|
|
)
|
|
no_stylesheets = True
|
|
use_embedded_content = False
|
|
masthead_url = 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Nautilus.svg/640px-Nautilus.svg.png'
|
|
remove_attributes = ['height', 'width']
|
|
ignore_duplicate_articles = {'title', 'url'}
|
|
remove_empty_feeds = True
|
|
extra_css = '''
|
|
.article-list_item-byline{font-size:small;}
|
|
blockquote{color:#404040; text-align:center;}
|
|
#fig-c{font-size:small;}
|
|
em{color:#202020;}
|
|
.breadcrumb{color:gray; font-size:small;}
|
|
.article-author{font-size:small;}
|
|
'''
|
|
|
|
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)
|
|
|
|
keep_only_tags = [classes('article-left-col feature-image article-content')]
|
|
|
|
remove_tags = [
|
|
classes(
|
|
'article-action-list article-bottom-newsletter_box article-ad article-ad__cta '
|
|
'main-post-comments-toggle-wrap main-post-comments-wrapper primis-ad '
|
|
'social-share supported-one article-collection_box browsi-ad'
|
|
)
|
|
]
|
|
|
|
feeds = [
|
|
('ANTHROPOLOGY', 'https://nautil.us/topics/anthropology/feed'),
|
|
('ENVIRONMENT', 'https://nautil.us/topics/environment/feed'),
|
|
('HEALTH', 'https://nautil.us/topics/health/feed'),
|
|
('PALEONTOLOGY', 'https://nautil.us/topics/paleontology/feed'),
|
|
('TECHNOLOGY', 'https://nautil.us/topics/technology/feed'),
|
|
('ARTS', 'https://nautil.us/topics/arts/feed'),
|
|
('EVOLUTION', 'https://nautil.us/topics/evolution/feed'),
|
|
('HISTORY', 'https://nautil.us/topics/history/feed'),
|
|
('PHILOSOPHY', 'https://nautil.us/topics/philosophy/feed'),
|
|
('ZOOLOGY', 'https://nautil.us/topics/zoology/feed'),
|
|
('ASTRONOMY', 'https://nautil.us/topics/astronomy/feed'),
|
|
('GENERAL', 'https://nautil.us/topics/general/feed'),
|
|
('MATH', 'https://nautil.us/topics/math/feed'),
|
|
('PHYSICS', 'https://nautil.us/topics/physics/feed'),
|
|
('COMMUNICATION', 'https://nautil.us/topics/communication/feed'),
|
|
('GENETICS', 'https://nautil.us/topics/genetics/feed'),
|
|
('MICROBIOLOGY', 'https://nautil.us/topics/microbiology/feed'),
|
|
('PHILOSOPHY', 'https://nautil.us/topics/psychology/feed'),
|
|
('ECONOMICS', 'https://nautil.us/topics/economics/feed'),
|
|
('GEOSCIENCE', 'https://nautil.us/topics/geoscience/feed'),
|
|
('NEUROSCIENCE', 'https://nautil.us/topics/neuroscience/feed'),
|
|
('SOCIOLOGY', 'https://nautil.us/topics/sociology/feed'),
|
|
]
|
|
|
|
def get_cover_url(self):
|
|
soup = self.index_to_soup('https://nautil.us/shop/category/issues/')
|
|
a = soup.find(
|
|
'a',
|
|
attrs={
|
|
'href': lambda x: x
|
|
and x.startswith('https://nautil.us/shop/issues/issue-')
|
|
},
|
|
)
|
|
if a:
|
|
listing_url = a['href']
|
|
listing_soup = self.index_to_soup(listing_url)
|
|
listing = listing_soup.find('div', {'class': 'product'})
|
|
if listing:
|
|
imgs = listing.find_all(
|
|
'img',
|
|
attrs={
|
|
'src': lambda x: x
|
|
and x.startswith('https://assets.nautil.us/sites/3/nautilus/')
|
|
},
|
|
)
|
|
if len(imgs) > 1:
|
|
self.cover_url = imgs[1]['src'].split('?')[0]
|
|
return getattr(self, 'cover_url', self.cover_url)
|
|
|
|
def preprocess_html(self, soup):
|
|
for img in soup.findAll('img', attrs={'data-src': True}):
|
|
img['src'] = img['data-src'].split('?')[0]
|
|
for figcaption in soup.findAll('figcaption'):
|
|
figcaption['id'] = 'fig-c'
|
|
for ul in soup.findAll(
|
|
'ul',
|
|
attrs={
|
|
'class': [
|
|
'breadcrumb',
|
|
'article-list_item-byline',
|
|
'channel-article-author',
|
|
'article-author',
|
|
]
|
|
},
|
|
):
|
|
ul.name = 'span'
|
|
for li in ul.findAll('li'):
|
|
li.name = 'p'
|
|
for img in soup.findAll('img', attrs={'srcset': True}):
|
|
img['src'] = img['srcset'].split(',')[-1].split()[0]
|
|
return soup
|