some sleep is good for you

This commit is contained in:
Andrej Karpathy
2021-12-10 20:28:34 -08:00
parent cd2a88f375
commit 65d4bb8415
+3
View File
@@ -11,6 +11,7 @@ to manually register with sendgrid yourself, get an API key and put it in the fi
import os import os
import time import time
import random
import argparse import argparse
import numpy as np import numpy as np
@@ -258,6 +259,8 @@ if __name__ == "__main__":
send_email(email, html) send_email(email, html)
num_sent += 1 num_sent += 1
# zzz
time.sleep(1 + random.uniform(0, 2))
print("done.") print("done.")
print("sent %d emails" % (num_sent, )) print("sent %d emails" % (num_sent, ))