I would need a way to stop a thread that has been created. The thread performs a function that will never come to an end and I would need to be able to control it. Do you know how to do this? Thanks in advance. I had tried with:
t = threading.Thread(target=job).start()
.
.
t.join()
but it doesn't seem to work..