Add --weekday and --day-summary options to rssjournal#16
Merged
adulau merged 1 commit intoJun 7, 2026
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
YYYY-MM-DDdates in daily page titles and yearly index listings.Description
--weekdayand--day-summaryand wire them throughwrite_journaland CLI parsing to control label formatting and summary insertion.format_day_labeland use it to produce title labels like2026-06-06 (Saturday)and update yearly index labels accordingly.build_day_summaryandupsert_day_summary(withDAILY_SUMMARY_PREFIX) to generate and insert/update a concise one-line summary based on item count, top sources, and representative titles.ensure_markdown_front_matter(update_title=True)andupdate_front_matter_titleto keep page titles in sync when weekday labels are enabled, and updateREADME.mdto document the new options.Testing
python3 -m py_compile bin/rssjournal.pywhich succeeded.git diff --checkand lint-style checks which produced no issues.feedparser/bs4modules exercising--weekday --day-summary, which produced correctly-formatted daily and yearly pages.python3 -m pip install --user -r REQUIREMENTSbut it failed due to package index access being blocked (403 tunnel error), so dependency installation could not be fully validated.Codex Task