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
16
17
18
//! GDELT CLI Library
//!
//! This library provides access to the GDELT Project data and APIs.
//! It is primarily used by the `gdelt` CLI binary, but can also be
//! used as a library for programmatic access.

pub mod analytics;
pub mod api;
pub mod cli;
pub mod config;
pub mod daemon;
pub mod data;
pub mod db;
pub mod enrich;
pub mod error;
pub mod mcp;
pub mod models;
pub mod skill;