From d70ce2d2dc525c173d3b76ab06c5b9256b4519d8 Mon Sep 17 00:00:00 2001 From: mdivecky Date: Thu, 25 Aug 2022 17:08:08 +0200 Subject: [PATCH] stop storing article descriptions --- processor/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/processor/app.py b/processor/app.py index 3308a4b..b6c56e7 100644 --- a/processor/app.py +++ b/processor/app.py @@ -88,12 +88,12 @@ for feed in config['feeds']: for item in rss['entries']: rss_id = item[unique_tag] title = item['title'] - description = item['description'] + #description = item['description'] ## Don't store description for now, as we don't need it and it's big. published = time.strftime('%Y:%m:%d %H:%M:%S %Z %z', item['published_parsed']) link = item['link'] article_data = { 'title' : title, - 'description': description, + #'description': description, 'published' : published, 'link' : link, 'medium' : name