calibre/recipes/the_things.recipe
un-pogaz 19b9d979ab comment formating (auto-fix)
ruff 'E114,E115,E116,E261,E262,E265'
2025-01-24 11:14:21 +01:00

37 lines
1.5 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 AdvancedUserRecipe1718105400(BasicNewsRecipe):
title = 'The Things'
language = 'en'
__author__ = 'Spicy Poison'
description = (
'At The Things theyre all about diving deep into the lives of celebrities and discovering'
' who they really are behind the scenes. When the cameras stop rolling and the costumes come off,'
' who are these Hollywood celebrities, really?')
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/th-logo-full-colored-light.svg'
remove_empty_feeds = True
auto_cleanup = True
feeds = [
# Celebrity
('Celebrity', 'https://www.thethings.com/feed/category/celebrity/'),
('Celebrity News', 'https://www.thethings.com/feed/category/celebrity-news/'),
('TV Shows', 'https://www.thethings.com/feed/category/tv-shows/'),
('Reality TV', 'https://www.thethings.com/feed/category/reality-tv/'),
('Movies', 'https://www.thethings.com/feed/category/movies/'),
('Fashion', 'https://www.thethings.com/feed/category/fashion/'),
('Interviews', 'https://www.thethings.com/feed/category/interviews/'),
('Music', 'https://www.thethings.com/feed/tag/music/'),
]