Python : How to wait between 2 commands?[Solved]

Hi,

I try to send 2 python command, for example:

print("1") print("2")

I would like a delay between this two prints.
I founded Time module that allow us to do that with :

print("1") time.sleep(10) # means 10 secondes waiting print("2")

But this time module freeze all touchdesigner software during the “sleep” command.

How could I do this without any freeze in touchdesigner?

OOoops, I think I found the answer here :
[url]wait 5 seconds in DAT script - Beginners - TouchDesigner forum

:wink: