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