Skip to main content

jtool_grep/
lib.rs

1//! Jupyter Notebook grep library
2//!
3//! This library provides grep functionality for searching Jupyter notebooks,
4//! including pattern matching, cell filtering, and various output formats.
5
6pub mod matcher;
7pub mod output;
8pub mod search;
9pub mod types;
10
11// Re-export main types
12pub use matcher::Matcher;
13pub use search::{search_all_notebooks, search_notebook};
14pub use types::{GrepOptions, GrepResult, Match, MatchType};