By looking at nbconvert docs, you’ll see that you can use –to html method:
import os
os.system('jupyter nbconvert --to html yourNotebook.ipynb')
This will create a yourNotebook.html file inside yourNotebook.ipynb folder.
By looking at nbconvert docs, you’ll see that you can use –to html method:
import os
os.system('jupyter nbconvert --to html yourNotebook.ipynb')
This will create a yourNotebook.html file inside yourNotebook.ipynb folder.