"""Entity Analysis - Monthly Module. | |
This module provides entity analysis for the latest 30 days of data. | |
It processes and returns top entities with their mention counts and types | |
for the past 30 days from the most recent article date. | |
""" | |
from ..utils import get_entity_analysis_data | |
def process(): | |
"""Return Entity Analysis data for the *latest 30 days*.""" | |
return get_entity_analysis_data("month") | |