Python Forum
UnUnloading values from multiple widgets in a container
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
UnUnloading values from multiple widgets in a container
#3
I'm not familiar with ipywidgets, and I suspect others lacking that knowledge is a big part of why you're not getting responses. That said, I'd have skipped over your thread even if I had the expertise, and here's why...

For anything but the most trivial of issues, and especially for issues where we don't already know the solution, we want to run the code. We want to tinker with it. We want to figure it out ourselves and then give you a helpful response, rather than going back and forth over and over hashing out small details.

The first thing I noticed with your code, after scrolling through it for about a second, was the lack of imports. I was excited at first - I'm pretty confident I can answer any Python question that doesn't include imports, unless it's really exotic. Here's the thing...
Error:
Traceback (most recent call last): File "forum.py", line 35, in <module> demo = create_master_tab() File "forum.py", line 30, in create_master_tab panel_num = VBox(get_input_panel_num()) NameError: name 'VBox' is not defined
I didn't have to run your code to know that this is the result from running it. It took a few seconds of reading code. I suppose I could Google around and try to get it working, but honestly I expect people to put in the maximum effort to help us help them before I go down a rabbit hole like that.

Anytime you're asking a question about code, you should provide full, runnable code, and if there's an error message with that code that needs to be included as well. I don't say this to shame you, but to help you - I could have (and nearly did) just skip over this. No one is going to hold it against you that you didn't know how to ask coding questions before. But if you make a habit of asking questions like this, you'll get similar answers.

tldr the best you can do at this point is make sure your code is runnable, so that people who aren't already familiar with that library can tinker with it. Providing details on how to install that library is probably worthwhile too.
Reply


Messages In This Thread
RE: UnUnloading values from multiple widgets in a container - by micseydel - Apr-17-2020, 11:30 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  __init__() got multiple values for argument 'schema' dawid294 4 2,801 Jan-03-2024, 09:42 AM
Last Post: buran
  uploading files from a ubuntu local directory to Minio storage container dchilambo 0 529 Dec-22-2023, 07:17 AM
Last Post: dchilambo
  Upload Files to Azure Storage Container phillyfa 6 853 Dec-22-2023, 06:11 AM
Last Post: Pedroski55
Lightbulb shutdown host from docker container cosmin1805 0 995 Nov-27-2022, 06:34 PM
Last Post: cosmin1805
  networkx package is not visible in singularity container image erdemath 11 2,438 Oct-14-2022, 12:04 PM
Last Post: Larz60+
  python installation/running inside singularity container erdemath 2 1,882 Sep-21-2022, 08:13 AM
Last Post: erdemath
  Python in Singularity Container on Ubuntu erdemath 0 945 Aug-31-2022, 02:17 PM
Last Post: erdemath
  How to combine multiple column values into 1? cubangt 15 3,050 Aug-11-2022, 08:25 PM
Last Post: cubangt
  Function - Return multiple values tester_V 10 4,629 Jun-02-2021, 05:34 AM
Last Post: tester_V
  Xlsxwriter: Create Multiple Sheets Based on Dataframe's Sorted Values KMV 2 3,573 Mar-09-2021, 12:24 PM
Last Post: KMV

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020