Skip to content

RobbeSneyders/Jupyter-skip-extension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Jupyter-skip-extension

This is a Jupyter kernel extension that adds the ability to skip the execution of a cell via the skip magic command.

Load the extension in your notebook:

%load_ext skip_kernel_extension

Run the skip magic command in the cells you want to skip:

%%skip True

You can use a variable to decide if a cell should be skipped by using $:

should_skip = True

%%skip $should_skip 
#skipped


should_skip = False

%%skip $should_skip 
#not skipped

skip_kernel_extension_2.py is an alternative implementation with the same functionality.

About

Jupyter notebook extension to skip execution of cells

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages