nb-cli 0.0.9

A command-line tool for reading, writing, and executing Jupyter notebooks
1
2
3
4
5
6
7
//! Local execution backend using direct kernel connection

pub mod discovery;
pub mod executor;
pub mod manager;

pub use executor::LocalExecutor;