Hello everyone,
First of all, congratulations to everyone on your achievements.
I created a recipe for my RSS feeds to create a newsletter. However, I would like to "retrieve the updates," but only the summaries and not the full articles. Is this possible?
Thank you for your help; I'm a beginner
[#!/usr/bin/env python
# vim:fileencoding=utf-8
from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1747227074(BasicNewsRecipe):
title = 'FORMATION PROFESSIONNELLE'
oldest_article = 7
max_articles_per_feed = 50
auto_cleanup = True
feeds = [
('Digiformag', 'https://www.digiformag.com/feed/'),
('Le Quotidien de la formation – Centre Inffo', 'https://www.centre-inffo.fr/category/site-centre-inffo/actualites-centre-inffo/le-quotidien-de-la-formation-actualite-formation-professionnelle-apprentissage/feed'),
("Thématique : Qualité - Qualiopi - Certif'Région", 'https://veille-emploi-formation.cariforefoccitanie.fr/RSS/Fil_185.xml?title=Th%C3%A9matique%20%3A%20Qualit%C 3%A9%20%2D%20Qualiopi%20%2D%20Certif%27R%C3%A9gion '),
('Thématique : Formation professionnelle', 'https://veille-emploi-formation.cariforefoccitanie.fr/RSS/Fil_182.xml?title=Th%C3%A9matique%20%3A%20Formatio n%20professionnelle'),
]