calibre/recipes/the_richest.recipe

29 lines
1.2 KiB
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 AdvancedUserRecipe1718381444(BasicNewsRecipe):
title = 'The Richest'
language = 'en'
__author__ = 'Spicy Poison'
description = ('The Richest is one of the Internets longest-running celebrity net worth resources'
' - growing into one of the most informative (and entertaining) websites in the world.')
publisher = 'Valnet Publishing Group'
oldest_article = 7
max_articles_per_feed = 50
no_stylesheets = True
use_embedded_content = False
ignore_duplicate_articles = {'title', 'url'}
encoding = 'utf-8'
masthead_url = 'https://www.valnetinc.com/images/brand/tr-logo-full-colored-dark.svg'
remove_empty_feeds = True
auto_cleanup = True
feeds = [
('The Rich & Powerful', 'https://www.therichest.com/feed/category/rich-powerful/'),
('Luxury Lifestyle', 'https://www.therichest.com/feed/category/luxury/'),
('Luxury Architecture', 'https://www.therichest.com/feed/category/luxury-architecture/'),
('Business', 'https://www.therichest.com/feed/category/business/'),
]