mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
24 lines
820 B
Python
24 lines
820 B
Python
#!/usr/bin/env python
|
||
# vim:fileencoding=utf-8
|
||
from calibre.web.feeds.news import BasicNewsRecipe
|
||
|
||
|
||
class AdvancedUserRecipe1717853438(BasicNewsRecipe):
|
||
title = 'Healthline'
|
||
language = 'en'
|
||
__author__ = 'Spicy Poison'
|
||
description = ('Healthline covers all facets of physical and mental health openly and objectively'
|
||
' because we’re here for the whole person — for your whole life.')
|
||
publisher = 'Healthline Media '
|
||
oldest_article = 30
|
||
max_articles_per_feed = 50
|
||
ignore_duplicate_articles = {'title', 'url'}
|
||
encoding = 'utf-8'
|
||
masthead_url = 'https://duckduckgo.com/i/9114f6be67940d2e.png'
|
||
remove_empty_feeds = True
|
||
auto_cleanup = True
|
||
|
||
feeds = [
|
||
('All Articles', 'https://www.healthline.com/rss/health-news'),
|
||
]
|