I\'m looking at using the *.ipynb files as the source of truth and programmatically \'compiling\' them into .py files for scheduled jobs/tasks.
The
For converting all *.ipynb format files in current directory to python scripts recursively:
for i in *.ipynb **/*.ipynb; do echo "$i" jupyter nbconvert "$i" "$i" done