I have this main thread:
Gui.py
from gi.repository import Gtk, Gdk import Process import gobject class gui(): def __init__(self): self.w
As you suggested you need to start another thread for this. Usually threading in python is pretty straightforward but it can get tricky with GUIs.
This should be of help: Python. Doing some work on background with Gtk GUI