I have a while loop, and I want it to keep running through for 15 minutes. it is currently:
while True: #blah blah blah
(this runs thro
Simply You can do it
import time delay=60*15 ###for 15 minutes delay close_time=time.time()+delay while True: ##bla bla ###bla bla if time.time()>close_time break