mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-07 10:14:46 -04:00
comment formating (manual)
ruff 'E114,E115,E116,E261,E262,E265'
This commit is contained in:
parent
19b9d979ab
commit
dba73b96b7
@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env python
|
||||
# vim:fileencoding=utf-8
|
||||
# vim:fileencoding=utf-8
|
||||
|
||||
from __future__ import absolute_import, division, print_function, unicode_literals
|
||||
|
||||
|
@ -56,9 +56,9 @@ def bilderstrecke(soup,tag):
|
||||
|
||||
for v in struct:
|
||||
if isinstance(v, dict) and 'caption' in v and 'defaultUrl' in v:
|
||||
# if type(struct[i-1])== str:
|
||||
# head = soup.new_tag("h4")
|
||||
# head.append(struct[i-1])
|
||||
# if type(struct[i-1])== str:
|
||||
# head = soup.new_tag("h4")
|
||||
# head.append(struct[i-1])
|
||||
cap = soup.new_tag('p')
|
||||
cap.append(struct[int(v['caption'])])
|
||||
cap['class'] = 'body-elements__image-figcaption'
|
||||
@ -172,10 +172,10 @@ class FazNet(BasicNewsRecipe):
|
||||
else:
|
||||
def parse_index(self):
|
||||
test_article = 'https://www.faz.net/aktuell/stil/mode-im-em-jahr-wir-zeigen-wie-fussball-und-mode-zusammengehoeren-19766969.html'
|
||||
# test_article = 'https://www.faz.net/aktuell/feuilleton/buecher/film-eruption-ein-thriller-aus-dem-nachlass-von-michael-crichton-19770491.html'
|
||||
# test_article = 'https://www.faz.net/aktuell/stil/mode-design/leonie-benesch-sandra-hueller-ist-eine-meiner-heldinnen-19671638.html'
|
||||
# test_article = 'https://www.faz.net/aktuell/feuilleton/medien/sabine-postel-zum-siebzigsten-die-briten-nannten-sie-german-traktor-19708409.html'
|
||||
# test_article = 'https://www.faz.net/aktuell/stil/mode-design/von-richert-beil-bis-william-fan-wer-kauft-denn-das-19666592.html'
|
||||
# test_article = 'https://www.faz.net/aktuell/feuilleton/buecher/film-eruption-ein-thriller-aus-dem-nachlass-von-michael-crichton-19770491.html'
|
||||
# test_article = 'https://www.faz.net/aktuell/stil/mode-design/leonie-benesch-sandra-hueller-ist-eine-meiner-heldinnen-19671638.html'
|
||||
# test_article = 'https://www.faz.net/aktuell/feuilleton/medien/sabine-postel-zum-siebzigsten-die-briten-nannten-sie-german-traktor-19708409.html'
|
||||
# test_article = 'https://www.faz.net/aktuell/stil/mode-design/von-richert-beil-bis-william-fan-wer-kauft-denn-das-19666592.html'
|
||||
# test_article = 'https://www.faz.net/aktuell/feuilleton/buecher/rezensionen/sachbuch/tom-mustills-buch-die-sprache-der-wale-19657782.html'
|
||||
if test_article:
|
||||
return [('Articles', [{'title': 'Test article', 'url': test_article}])]
|
||||
@ -214,7 +214,7 @@ class FazNet(BasicNewsRecipe):
|
||||
if len(par.contents) == 1:
|
||||
cont = str(par.contents[0])
|
||||
if re.search(r'^[1-9]\d* Bilder$',cont):
|
||||
# print(cont)
|
||||
# print(cont)
|
||||
for tag in soup.findAll('script',attrs={'id':'__NUXT_DATA__','type':'application/json'}):
|
||||
bilderstrecke(soup,tag)
|
||||
break
|
||||
|
@ -6,14 +6,14 @@ from calibre.web.feeds.news import BasicNewsRecipe
|
||||
|
||||
class UAFootball(BasicNewsRecipe):
|
||||
|
||||
# Russian version
|
||||
# title = 'UA-\u0424\u0443\u0442\u0431\u043E\u043B'
|
||||
# language = 'ru_UK'
|
||||
# feeds = [
|
||||
# ('\u041D\u043E\u0432\u043E\u0441\u0442\u0438 \u0444\u0443\u0442\u0431\u043E\u043B\u0430', 'https://www.ua-football.com/rss/all.xml')
|
||||
# ]
|
||||
# Russian version
|
||||
# title = 'UA-\u0424\u0443\u0442\u0431\u043E\u043B'
|
||||
# language = 'ru_UK'
|
||||
# feeds = [
|
||||
# ('\u041D\u043E\u0432\u043E\u0441\u0442\u0438 \u0444\u0443\u0442\u0431\u043E\u043B\u0430', 'https://www.ua-football.com/rss/all.xml')
|
||||
# ]
|
||||
|
||||
# Ukrainian version
|
||||
# Ukrainian version
|
||||
title = 'UA-\u0424\u0443\u0442\u0431\u043E\u043B'
|
||||
description = ('\u0410\u043A\u0442\u0443\u0430\u043B\u044C\u043D\u0456 \u0442\u0435\u043C\u0438'
|
||||
' \u0444\u0443\u0442\u0431\u043E\u043B\u044C\u043D\u043E\u0433\u043E'
|
||||
|
Loading…
x
Reference in New Issue
Block a user