calibre/recipes/healthline.recipe

24 lines
820 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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 were 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'),
]