connection.py extend wait time code example
Example 1: python delay
>>> import time
>>> time.sleep(3) # Sleep for 3 seconds
Example 2: wait in python
#Wait in python
#Module required - time
import time
#Wait in for the time you put
time.sleep(0.5)
print('Wait in python')