After starting my thread if I quit my python program, is the thread killed ? If not how can my thread be killed after quitting my program ?
I created the thread like this:
self.thread = threading.Thread(target=self.start_thread)
self.thread.start()
In start_thread there's a while True and I don't want it to stop before leaving the program