From: xangelo Date: Tue, 22 Jul 2025 03:48:02 +0000 (-0400) Subject: sync(medium): add post count to parser X-Git-Url: https://git.xangelo.ca/?a=commitdiff_plain;h=fc4d298d08497818f9a6951362617653fcb5c2eb;p=xangelo.ca.git sync(medium): add post count to parser --- diff --git a/.github/scripts/medium_to_hugo.py b/.github/scripts/medium_to_hugo.py index 9e0b1f3..f90d54e 100644 --- a/.github/scripts/medium_to_hugo.py +++ b/.github/scripts/medium_to_hugo.py @@ -47,6 +47,8 @@ def resolve_medium_media_links(content): feed = feedparser.parse(RSS_URL) +print(f"Parsing {RSS_URL}, {len(feed.entries)} posts") + for entry in feed.entries: slug = slugify(entry.title) if slug in EXISTING_SLUGS: