Coverage for muutils/nbutils/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-04-04 03:33 -0600
« prev ^ index » next coverage.py v7.6.1, created at 2025-04-04 03:33 -0600
1"""utilities for working with notebooks
3- configuring figures mdoes and torch devices: `configure_notebook`
4- converting them to scripts: `convert_ipynb_to_script`
5- running them as tests: `run_notebook_tests`
6- and working with diagrams/LaTeX: `mermaid`, `print_tex`
8"""
10from muutils.nbutils.mermaid import mm
12__all__ = [
13 # sub-modules
14 "configure_notebook",
15 "convert_ipynb_to_script",
16 "mermaid",
17 "print_tex",
18 "run_notebook_tests",
19 # functions
20 "mm",
21]