"""Content Flow Tracker - Weekly Module. This module provides content flow analysis for the latest 7 days of data. It processes and returns aggregated article statistics by source and category for the past 7 days from the most recent article date. """ from ..utils import get_content_flow_data def process(): """Return Content Flow Tracker data for the *latest 7 days*.""" return get_content_flow_data("week")