6

我在 Jupyter Notebook 中有一个 Python 程序,它interact从模块中使用ipywidgets

interact(my_func, filter_by=filter_by_list, format_type=format_dict.keys())

我希望有人能够在某处的网站上打开笔记本并使用交互式小部件,而无需 Python 或其他任何东西,就像这里一样。

4

1 回答 1

4

你可以查看这个网站:http: //ipywidgets.readthedocs.io/en/latest/embedding.html#python-interface

from ipywidgets import IntSlider
from ipywidgets.embed import embed_minimal_html

slider = IntSlider(value=40)
embed_minimal_html('export.html', views=[slider], title='Widgets export')

根据文档,它会生成一个 export.html 文件。

于 2018-04-18T06:03:15.557 回答