-
Notifications
You must be signed in to change notification settings - Fork 567
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Output notebook while executing #648
Comments
Agreed! |
related to #374? |
Also https://papermill.readthedocs.io/en/latest/ supports this as a wrapper to nbconvert for notebook-to-notebook transformation. I can look into pulling this functionality into the preprocessor when I get back to finishing #905 (or shortly there-after). |
Somewhat related to #709 which suggests to save the notebook every Another option could be to add the possibility to save the notebook anytime a cell is executed. |
Generally at this point the advice is to use papermill for notebook execution when you want periodic saves and deeper reporting on execution. It's unlikely that this will be copied over to nbconvry, and probably not worth the library duplication, as papermill was made specifically to isolate complex execution concerns and execution ability in nbconvert is left for compatibility and ease of combining with template conversions in a singular call. |
I did have a try at papermill and it works as expected:
Thanks, Laurent |
I'm using
nbconvert
to execute notebooks from the command line. Some of these notebooks take a long time and I don't get any feedback on the progress (and e.g. potential convergence problems etc) unless I save some results to files in the notebook. Is there any way to e.g. e.g. write the cell and the output to the console (e.g. as markdown) while processing the notebook? This would make things a lot easier.The text was updated successfully, but these errors were encountered: