How to create multiple threads
We will create multiple threads using Python. This is necessary in order to keep our GUI responsive.
Note
A thread is like weaving a fabric made out of yarn and is nothing to be afraid of.
Getting ready
Multiple threads run within the same computer process memory space. There is no need for IPC, which would complicate our code. In this recipe, we will avoid IPC by using threads.
How to do it…
First we will increase the size of our ScrolledText
widget, making it larger. Let's increase scrol_w
 to 40
and scrol_h
 to 10
:
# Using a scrolled Text control scrol_w = 40; scrol_h = 10 # increase sizes self.scrol = scrolledtext.ScrolledText(mighty, width=scrol_w, height=scrol_h, wrap=tk.WORD) self.scrol.grid(column=0, row=3, sticky='WE', columnspan=3)
When we now run the resulting GUI, the Spinbox
widget is center-aligned in relation to the Entry widget...