Questions tagged [voila]

Voilà allows you to convert a Jupyter Notebook into an interactive dashboard that allows you to share your work with others. It is secure and customizable, giving you control over what your readers experience.

106 questions
1
vote
1 answer

python ipyvuetify equivalent to ipywidgets Output

A simple Output ipywidget to display text might look like this: out = widgets.Output(layout={'border': '1px solid black'}) out this element is very useful when rendering with voila. What is the equivalent in ipyvuetify? I did not find an equivalent…
JFerro
  • 3,203
  • 7
  • 35
  • 88
1
vote
1 answer

ipyvuetify buttons display side by side

I am pretty new (a few days) to ipyvuetify and I am building some buttons as such: v_btn_R1 = v.Btn(class_='mx-2 light-blue darken-1', children=['R1']) v_btn_R2 = v.Btn(class_='mx-2 light-blue darken-1', children=['R2']) v_btn_R3 =…
JFerro
  • 3,203
  • 7
  • 35
  • 88
1
vote
1 answer

creating scrollable layout in ipyvuetify

I'm using the ipyvuetify lib to create a nice voila layout for my jupyter notebook. I try to create a file selector inspired by crahan/ipyfilechooser. so when the folder content is too big I want to create a scrollable list : folder_select =…
Pierrick Rambaud
  • 1,726
  • 1
  • 20
  • 47
1
vote
1 answer

ipyvuetify user input text field

I am learning the wonderful ipyvuetify widgets environment for rendering nice notebooks with voila. I am looking for several hours in: https://ipyvuetify.readthedocs.io/en/latest/introduction.html Now, already in that link there is no widget for…
JFerro
  • 3,203
  • 7
  • 35
  • 88
1
vote
1 answer

heroku voila app error Process exited with status 1

I need some help deploying Voila app on Heroku. I'm using a free Heroku account. The GitHub repository can be found here https://github.com/ostasis/One-dimensional-heroku The notebook runs fine locally using Voila and runs on Not sure if it helps…
ostasis
  • 21
  • 4
1
vote
0 answers

Is it possible to use itables in voila?

I'm trying to use itables to display my dataframes in a better way. When I run my code in a Notebook, everything is working fine but when I use the voila representation, all my dataframes are displayed as if they were empty. That's an easy example…
rjoffrin
  • 11
  • 2
1
vote
0 answers

Voila in Jupyter Hub

I'm looking in to creating interactive Dashboards with Voila. My team is doing work in Jupyter Hub. Is there a way to use Voila in the hub environment?
1
vote
1 answer

Ipywidgets not interacting in "while True" loop

1)This is the code snippet that I am trying to run.The main idea is that, I want the ipywidgets to be interactive, while the data is constantly being fetched from the data source. And the data is being updated at certain interval using the while…
1
vote
2 answers

how to deal with variable width of Buttons in ipywidgets

I have the need to display a bunch of buttons. the description of every button corresponds to every word of a text. In order to give a text appearance I want to make button width accoding to the length of the word inside. So I create a variable that…
JFerro
  • 3,203
  • 7
  • 35
  • 88
1
vote
2 answers

ipywidgets Textarea height='auto' does not work

I am using ipywidgets to create a Dashboard with voila I have a Textarea as follows: comm_text = widgets.Textarea(value='', placeholder='OK', description='', …
JFerro
  • 3,203
  • 7
  • 35
  • 88
0
votes
0 answers

How to include a functional JSME (chemical editor) widget in a Voila dashboard and run commands?

EDITED to (I hope) clarify I'm trying to enhance one of my tools by adding the JSME editor (https://jsme-editor.github.io/) in a ipynb that I render in a Voila dashboard. Working directly on the ipynb in JupyterHub, I manage to display the widget…
Pepimouth
  • 1
  • 1
0
votes
1 answer

Runtime error when deploying on Google App Engine

I am trying to deploy a small dashboard using a jupyter notebook and voila on the Google App Engine. Once the files have been uploaded to google cloud storage I get the following error: Beginning deployment of service…
eyrie01
  • 11
  • 1
0
votes
0 answers

How to avoid AG Grid theme selection overwriting the Voila theme

I have a voila that displays an AG Grid, as soon as the table is created the Voila theme is changed. See below minimal reproducible example: I use am using voila's "dark" theme, once the table is created the voila theme changes to "light": { …
Diego F Medina
  • 429
  • 3
  • 14
0
votes
0 answers

How to close a Voila instance after shutting down kernel

After running a voila command in the anaconda command line I can't seem to regain access to the terminal afterwards. Closing the browser tab will shut down the kernel, but the command prompt remains inoperable. I have tried all the common shortcuts…
0
votes
0 answers

Value of dynamically generated Textbox not changing in Voila Render mode in ipywidgets

I am generating Textboxes dynamically in ipywidgets. The use case is, in a given tab, multiple cities will be selected from a list of checkboxes, and then based on selection, a table containing city name and priority (editable) will generated…
Abhishek
  • 83
  • 10