Python Forum
Jupternotebook file - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Jupternotebook file (/thread-29559.html)



Jupternotebook file - biprabu - Sep-10-2020

Hi ALL,

I have written in script in Jupyter notebook, code is working perfectly.
my Questions
1) script is saving as .pnyib file ,how to schedule this file in windows task scheduler
2) how to open jupyter notebook exe in windows task scheduler

Thanks


RE: Jupternotebook file - scidam - Sep-10-2020

In Linux, if you call
Output:
jupyter nbconvert --execute yourfile.ipynb
it executes yourfile.ipynb and writes results in yourfile.html.
You can schedule this command to run *.ipynb file.
I suspect, something like this should work in Windows too.