mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-11-23 06:53:02 -05:00
111 lines
4.1 KiB
Python
111 lines
4.1 KiB
Python
#!/usr/bin/env python
|
|
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
|
|
'''
|
|
theatlantic.com
|
|
'''
|
|
import string, re
|
|
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
from calibre.ebooks.BeautifulSoup import Tag, NavigableString
|
|
|
|
class TheAtlantic(BasicNewsRecipe):
|
|
|
|
title = 'The Atlantic'
|
|
__author__ = 'Kovid Goyal and Sujata Raman'
|
|
description = 'Current affairs and politics focussed on the US'
|
|
INDEX = 'http://www.theatlantic.com/magazine/toc/0/'
|
|
language = 'en'
|
|
|
|
remove_tags_before = dict(name='div', id='articleHead')
|
|
remove_tags_after = dict(id='copyright')
|
|
remove_tags = [dict(id=['header', 'printAds', 'pageControls'])]
|
|
no_stylesheets = True
|
|
|
|
preprocess_regexps = [(re.compile(r'<!--.*?-->', re.DOTALL), lambda m: '')]
|
|
|
|
|
|
def print_version(self, url):
|
|
return url.replace('/archive/', '/print/')
|
|
|
|
def parse_index(self):
|
|
articles = []
|
|
|
|
soup = self.index_to_soup(self.INDEX)
|
|
sectit = soup.find('h1', attrs={'class':'sectionTitle'})
|
|
if sectit is not None:
|
|
texts = self.tag_to_string(sectit).strip().split()[-2:]
|
|
if texts:
|
|
self.timefmt = ' [%s]'%(' '.join(texts))
|
|
|
|
cover = soup.find('img', src=True, attrs={'class':'cover'})
|
|
if cover is not None:
|
|
self.cover_url = cover['src']
|
|
|
|
feeds = []
|
|
for section in soup.findAll('div', attrs={'class':'magazineSection'}):
|
|
section_title = section.find(attrs={'class':'sectionHeader'})
|
|
section_title = string.capwords(self.tag_to_string(section_title))
|
|
self.log('Found section:', section_title)
|
|
articles = []
|
|
for post in section.findAll('div', attrs={'class':'post'}):
|
|
h = post.find(['h3', 'h4'])
|
|
title = self.tag_to_string(h)
|
|
a = post.find('a', href=True)
|
|
url = a['href']
|
|
if url.startswith('/'):
|
|
url = 'http://www.theatlantic.com'+url
|
|
p = post.find('p', attrs={'class':'dek'})
|
|
desc = None
|
|
self.log('\tFound article:', title, 'at', url)
|
|
if p is not None:
|
|
desc = self.tag_to_string(p)
|
|
self.log('\t\t', desc)
|
|
articles.append({'title':title, 'url':url, 'description':desc,
|
|
'date':''})
|
|
feeds.append((section_title, articles))
|
|
|
|
poems = []
|
|
self.log('Found section: Poems')
|
|
for poem in soup.findAll('div', attrs={'class':'poem'}):
|
|
title = self.tag_to_string(poem.find('h4'))
|
|
desc = self.tag_to_string(poem.find(attrs={'class':'author'}))
|
|
url = 'http://www.theatlantic.com'+poem.find('a')['href']
|
|
self.log('\tFound article:', title, 'at', url)
|
|
self.log('\t\t', desc)
|
|
poems.append({'title':title, 'url':url, 'description':desc,
|
|
'date':''})
|
|
if poems:
|
|
feeds.append(('Poems', poems))
|
|
|
|
div = soup.find(id='advice')
|
|
if div is not None:
|
|
self.log('Found section: Advice')
|
|
title = self.tag_to_string(div.find('h4'))
|
|
url = 'http://www.theatlantic.com'+div.find('a')['href']
|
|
desc = self.tag_to_string(div.find('p'))
|
|
self.log('\tFound article:', title, 'at', url)
|
|
self.log('\t\t', desc)
|
|
|
|
feeds.append(('Advice', [{'title':title, 'url':url, 'description':desc,
|
|
'date':''}]))
|
|
return feeds
|
|
|
|
def postprocess_html(self, soup, first):
|
|
for table in soup.findAll('table', align='right'):
|
|
img = table.find('img')
|
|
if img is not None:
|
|
img.extract()
|
|
caption = self.tag_to_string(table).strip()
|
|
div = Tag(soup, 'div')
|
|
div['style'] = 'text-align:center'
|
|
div.insert(0, img)
|
|
div.insert(1, Tag(soup, 'br'))
|
|
if caption:
|
|
div.insert(2, NavigableString(caption))
|
|
table.replaceWith(div)
|
|
|
|
return soup
|
|
|