mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
18 lines
653 B
Python
18 lines
653 B
Python
#!/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'),
|
|
] |