Voilà turns Jupyter notebooks to standalone web applications
31–40 of 52 posts
Re: Voilà turns Jupyter notebooks to standalone web applications
#32Any real-life examples? The blog only seems to contain animated gifs.
UX is not great, you have to go to http://voila-gallery.org/hub/logout after you've started an example dashboard to be able to see another.
Re: Voilà turns Jupyter notebooks to standalone web applications
#33This is huge - This basically allows your analysts and data scientists to have a company wide impact by productionizing your code. Plotly dash tried to do this, but was a bit weird to use.
Re: Voilà turns Jupyter notebooks to standalone web applications
#34For years I thought Jupyter Notebook was hardware, a specific laptop made for scientists. Am I alone thinking it's a confusing name?
Re: Voilà turns Jupyter notebooks to standalone web applications
#35If it spawns a new kernel for each request it will be very slow no?
Or at least each page load will be slow and memory intensive for the server
Re: Voilà turns Jupyter notebooks to standalone web applications
#36For years I thought Jupyter Notebook was hardware, a specific laptop made for scientists. Am I alone thinking it's a confusing name?
No you are not alone. I have no crossover with the Python world aside from hearing about it on HN and Reddit. I too assumed it was like a Bloomberg terminal for data scientists and was surprised to discover it’s just a virtual environment wrapper you install. Poor name for the project if you are marketing it outside of your domain which I doubt they care much about.
Re: Voilà turns Jupyter notebooks to standalone web applications
#37side note: I hope everyone is aware of Jupyter Lab , the successor of Jupyter Notebooks -- it's been basically version 1.0 for over a year: https://blog.jupyter.org/jupyterlab-is-ready-for-users-5a6f0...
Edit: Nevermind. I see it is a separate project.
Re: Voilà turns Jupyter notebooks to standalone web applications
#38There's a somehow similar project called Panel: http://panel.pyviz.org/ However it's limited to Bokeh widgets whereas Voila is framework and language agnostic. As I understand it Panel allows to start Bokeh servers from notebooks.
The recent Panel announcement stated that it was widget/graphing library agnostic and mentioned plotly and Altair explicitly. I have not used it myself though.
Re: Voilà turns Jupyter notebooks to standalone web applications
#39This is huge - This basically allows your analysts and data scientists to have a company wide impact by productionizing your code. Plotly dash tried to do this, but was a bit weird to use.
I still feel like R/Shiny is miles ahead here, but Voilà looks like a step in the right direction
Re: Voilà turns Jupyter notebooks to standalone web applications
#40Is there any work on bringing Python into the browser like with JavaScript? At the beginning of the year, I was looking at the best way of making an interactive textbook either with Python (requiring a backend it seemed), or with JavaScript via D3. You can still use Jupyter Notebooks with JS; there's a library called BeakerX by Two Sigma that does this. I went the D3 route but it was hard to stay motivated when most…