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
12
13
14
15
//! Data models for GDELT data.
//!
//! This module contains Rust representations of GDELT data structures,
//! including events, GKG records, and mentions.

pub mod cameo;

// These modules contain TSV parsers for future bulk data import
#[allow(dead_code)]
pub mod event;
#[allow(dead_code)]
pub mod gkg;
#[allow(dead_code)]
pub mod mention;