mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
21 lines
635 B
Python
21 lines
635 B
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
from calibre.web.feeds.news import BasicNewsRecipe
|
|
|
|
|
|
class AdvancedUserRecipe1599499742(BasicNewsRecipe):
|
|
title = 'Aftonbladet'
|
|
__author__ = 'Jonatan Nyberg'
|
|
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'),
|
|
]
|