This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import nbformat | |
warning_message = '### Developers warning: This notebook was generated using XPTO' | |
nb_warning_cell = nbformat.v4.new_markdown_cell(warning_message) | |
for root, dirs, files in os.walk("."): | |
for file in files: | |
if file[-6:] == '.ipynb': | |
nb_path = os.path.join(root, file) | |
current_nb = nbformat.read(nb_path, as_version=4) |