jtool-grep 0.3.0

notebook-specific grep tool for jtool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Jupyter Notebook grep library
//!
//! This library provides grep functionality for searching Jupyter notebooks,
//! including pattern matching, cell filtering, and various output formats.

pub mod matcher;
pub mod output;
pub mod search;
pub mod types;

// Re-export main types
pub use matcher::Matcher;
pub use search::{search_all_notebooks, search_notebook};
pub use types::{GrepOptions, GrepResult, Match, MatchType};