datasynth-graph 2.5.0

Graph/network export for synthetic accounting data - supports PyTorch Geometric, Neo4j, and DGL formats
Documentation
//! Graph exporters for various ML frameworks and databases.
//!
//! This module provides exporters for popular graph neural network frameworks
//! and graph databases:
//!
//! - **PyTorch Geometric**: Edge index format `[2, num_edges]` for PyG Data objects
//! - **DGL (Deep Graph Library)**: COO format `[num_edges, 2]` for DGL graphs
//! - **Neo4j**: CSV files with Cypher import scripts for graph databases
//! - **RustGraph**: JSON/JSONL format for RustGraph/RustAssureTwin integration

pub mod common;
mod dgl;
pub mod hypergraph;
mod neo4j;
pub mod npy_writer;
mod pytorch_geometric;
mod rustgraph;
pub mod unified;

pub use common::*;
pub use dgl::*;
pub use hypergraph::{HypergraphExportConfig, HypergraphExporter};
pub use neo4j::*;
pub use pytorch_geometric::*;
pub use rustgraph::*;
pub use unified::*;