mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
#!/usr/bin/env python2
|
|
|
|
from __future__ import absolute_import, division, print_function, unicode_literals
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
prefixes = {"Permalink to", "Commenta"}
|
|
|
|
|
|
class IlPost(BasicNewsRecipe):
|
|
title = "Il Post"
|
|
language = "it"
|
|
__author__ = 'frafra'
|
|
tags = "news"
|
|
cover_url = "https://www.ilpost.it/wp-content/themes/ilpost/images/ilpost.svg"
|
|
ignore_duplicate_articles = {"url"}
|
|
no_stylesheets = True
|
|
keep_only_tags = [dict(id=["expanding", "singleBody"])]
|
|
|
|
def parse_index(self):
|
|
soup = self.index_to_soup("https://www.ilpost.it/")
|
|
entries = []
|
|
for link in soup.findAll('a', href=True, title=True):
|
|
if not link["href"].startswith("https://www.ilpost.it/20"):
|
|
continue
|
|
title = link["title"]
|
|
for prefix in prefixes:
|
|
if title.startswith(prefix):
|
|
title = title.lstrip(prefix)
|
|
break
|
|
title = title.strip()
|
|
entries.append({
|
|
"url": link["href"],
|
|
"title": title,
|
|
})
|
|
return [("Il Post", entries)]
|