Search code examples
pythonjupyter-notebook

upload jupiter notebook to html to leave the interactivity of tables aggrid


help me figure it out. You need to load jupiter notebook in html to leave the interactivity of ipyaggrid tables. Try: jupyter nbconvert --to html_toc --show-input backtest.ipynb --output output.html. result: enter image description here


Solution

  • I found decision: jupyter nbconvert --execute --ExecutePreprocessor.allow_errors=True --ExecutePreprocessor.store_widget_state=True --to html_toc --show-input {file}.ipynb --output {output}.html

    via jupiter notebook: see decision