Have the program pause for a little while (say a random amount between 5s to 30s) so that you look like a human.
import time, random time.sleep(random.randint(5, 30))