Various Swedish News Source by Jonatan Nyberg

Merge branch 'master' of https://github.com/jony0008/calibre into master
This commit is contained in:
Kovid Goyal 2020-09-08 08:30:08 +05:30
commit 571a196f07
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#!/usr/bin/env python
# vim:fileencoding=utf-8
from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1599499742(BasicNewsRecipe):
title = 'Aftonbladet'
oldest_article = 7
max_articles_per_feed = 100
auto_cleanup = True
language = 'sv'
description = u'Nyheter från Sveriges största nyhetssajt.'
publisher = 'Aftonbladet'
category = 'news'
cover_url = 'https://gfx.aftonbladet-cdn.se/hyper-assets/f684737c60484ef64ab63a9e73a54d8b.jpg'
feeds = [
('Aftonbladet', 'http://www.aftonbladet.se/rss.xml'),
]

View File

@ -0,0 +1,18 @@
#!/usr/bin/env python
# vim:fileencoding=utf-8
from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1599382724(BasicNewsRecipe):
title = 'SVT Nyheter'
oldest_article = 7
max_articles_per_feed = 100
auto_cleanup = True
language = 'sv'
description = u'SVT:s nyhetstjänst med nyheter från hela Sverige och världen inom kultur, sport, opinion och väder.'
publisher = 'SVT Nyheter'
category = 'news'
cover_url = 'https://www.svtstatic.se/resources/svtservice-n-render/svt-nyheter-logo_3.svg'
feeds = [
('SVT Nyheter', 'https://www.svt.se/nyheter/rss.xml'),
]