gdelt 0.1.0

CLI for GDELT Project - optimized for agentic usage with local data caching
1
2
3
4
5
6
7
8
9
10
11
//! Analytics module for GDELT data analysis.
//!
//! Provides trend analysis, entity extraction, sentiment analysis,
//! comparisons, and report generation using the local DuckDB database.

pub mod compare;
pub mod entities;
pub mod report;
pub mod sentiment;
pub mod trends;