I just copied all that from here:
This is the threading bit:
my_new_thread= threading.Thread(name=anything, target=my_new_function)
my_new_thread.start()
dev my_new_function():
do cool stuff
That's it.
I just copied all that from here:
This is the threading bit:
my_new_thread= threading.Thread(name=anything, target=my_new_function)
my_new_thread.start()
dev my_new_function():
do cool stuff
That's it.