App converter

I am working on project which is i completed but i have to show that project in App format. So, is there anyway so that i am able to convert my jupyter notebook into web app.
Thanks

Kindly try any of these:

https://nbconvert.readthedocs.io/en/latest/

https://ipython.org/ipython-doc/dev/notebook/nbconvert.html

https://anvil.works/learn/tutorials/jupyter-notebook-to-web-app

Good luck! :+1:

1 Like

I believe the easiest way is to use voilĂ .

After installing you just have to run:

voila <path-to-notebook> <options>

And you will have a server running your notebook as a web app, with all the input code omitted.


AppMode is “A Jupyter extension that turns notebooks into web applications”.

From the README:

Appmode consist of a server-side and a notebook extension for Jupyter. Together these two extensions provide the following features:

  • One can view any notebook in appmode by clicking on the Appmode button in the toolbar. Alternatively one can change the url from baseurl/notebooks/foo.ipynb to baseurl/apps/foo.ipynb. This also allows for direct links into appmode.
  • When a notebook is opened in appmode, all code cells are automatically executed. In order to present a clean UI, all code cells are hidden and the markdown cells are read-only.
  • A notebook can be opened multiple times in appmode without interference. This is achieved by creating temporary copies of the notebook for each active appmode view. Each appmode view has its dedicated ipython kernel. When an appmode page is closed the kernel is shutdown and the temporary copy gets removed.
  • To allow for passing information between notebooks via url parameters, the current url is injected into the variable jupyter_notebook_url.
2 Likes