This commit is contained in:
Kovid Goyal 2022-12-18 07:08:27 +05:30
parent 20cabde561
commit b292148d86
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
5 changed files with 7 additions and 5 deletions

View File

@ -1,5 +1,6 @@
from calibre.web.feeds.news import BasicNewsRecipe
class En_Globes_Recipe(BasicNewsRecipe):
description = 'This is en.globes.co.il.'
cover_url = 'https://www.globes.co.il/images/GlobesEN-144x40.gif'

View File

@ -1,5 +1,6 @@
from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1283848012(BasicNewsRecipe):
description = 'This is Globes.co.il.'
cover_url = 'https://images.globes.co.il/globes/logo-138-35-2.svg?ver=1'

View File

@ -9,7 +9,7 @@ class AdvancedUserRecipe1283848012(BasicNewsRecipe):
title = u'Walla'
language = 'he'
__author__ = 'marbs & barakplasma'
extra_css = 'body{direction: rtl;},title{direction: rtl; } ,article_description{direction: rtl; }, a.article{direction: rtl; } ,calibre_feed_description{direction: rtl; }'
extra_css = 'body{direction: rtl;},title{direction: rtl; } ,article_description{direction: rtl; }, a.article{direction: rtl; } ,calibre_feed_description{direction: rtl; }' # noqa
simultaneous_downloads = 5
timefmt = '[%d/%m/%y %H:%M]'
oldest_article = 1

View File

@ -2,9 +2,10 @@
# vim:fileencoding=utf-8
from calibre.web.feeds.news import BasicNewsRecipe
class WorksInProgress(BasicNewsRecipe):
title = 'Works in progress'
description = 'Works in Progress is an online magazine dedicated to sharing new and underrated ideas to improve the world, and features original writing from some of the most interesting thinkers in the world'
description = 'Works in Progress is an online magazine dedicated to sharing new and underrated ideas to improve the world, and features original writing from some of the most interesting thinkers in the world' # noqa
cover_url = "https://www.worksinprogress.co/wp-content/uploads/2020/03/logo-1.svg"
oldest_article = 7
max_articles_per_feed = 100

View File

@ -1,7 +1,6 @@
import re
from calibre.web.feeds.news import BasicNewsRecipe
import mechanize
class AdvancedUserRecipe1283848012(BasicNewsRecipe):