"""Entity Analysis - Today Module. | |
This module provides entity analysis for today's data only. | |
It processes and returns top entities with their mention counts and types | |
for the current day. | |
""" | |
from ..utils import get_entity_analysis_data | |
def process(): | |
"""Return Entity Analysis data for *today*.""" | |
return get_entity_analysis_data("today") | |