euporie.core.utils.Thread

class euporie.core.utils.Thread(group=None, target=None, name=None, args=(), kwargs=None, *, daemon=None)

A class that represents a thread of control.

This class can be safely subclassed in a limited fashion. There are two ways to specify the activity: by passing a callable object to the constructor, or by overriding the run() method in a subclass.