sightline-ruff-notebook 0.1.0

sightline's fork of ruff_notebook, an internal crate of ruff and ty (astral-sh/ruff), as the sightline binary pins it
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Utils for reading and writing jupyter notebooks

pub use cell::*;
pub use index::*;
pub use notebook::*;
pub use schema::*;

pub(crate) const SYNTHETIC_CELL_SEPARATOR: char = '\n';

mod cell;
mod index;
mod notebook;
mod schema;