What\'s the difference between the threading and thread modules in Python?
threading
thread
The module "Thread" treats a thread as a function, while the module "threading" is implemented in an object oriented way, i.e. every thread corresponds to an object.