Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/roy-ht/pre-commit-jupyter

Clean up cell outputs of jupyter notebook
https://github.com/roy-ht/pre-commit-jupyter

ipynb jupyter jupyter-notebook pre-commit-hook

Last synced: about 1 month ago
JSON representation

Clean up cell outputs of jupyter notebook

Awesome Lists containing this project

README

        

pre-commit hook to remove cell output of .ipynb notebook and some metadata for better security.

Sample config:
```
repos:
- repo: https://github.com/roy-ht/pre-commit-jupyter
rev: v1.2.1
hooks:
- id: jupyter-notebook-cleanup
args:
# - --remove-kernel-metadata
- --pin-patterns
- "[pin];[donotremove]"
```

If you have "pin patterns", You can keep cell outputs like that:

```
# [pin]
some_function()
print("some info")
```

```
# [donotremove]
some_function()
print("some info")
```