I\'m trying to program a loop with a asynchronous part in it. I dont want to wait for this asynchronous part every iteration though. Is there a way to not wait for this function
A simple way is to run test() in another thread
import threading th = threading.Thread(target=test) th.start()