calibre/recipes/car_buzz.recipe

31 lines
1.2 KiB
Python
Raw Permalink 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 AdvancedUserRecipe1718369687(BasicNewsRecipe):
title = 'Car Buzz'
language = 'en'
__author__ = 'Spicy Poison'
description = (
'Founded in 2010, CarBuzz was the vision of a team of gearheads with a desire'
' to share their passion for cars with the world. What resulted was the worlds premier car-related news app.')
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/cb-logo-full-colored-dark.svg'
remove_empty_feeds = True
auto_cleanup = True
feeds = [
('News', 'https://carbuzz.com/feed/category/news/'),
('Features', 'https://carbuzz.com/feed/category/features/'),
('Car Reviews', 'https://carbuzz.com/feed/category/car-reviews/'),
('Car Advice', 'https://carbuzz.com/feed/category/car-advice/'),
('Threads', 'https://carbuzz.com/feed/category/threads/'),
]