I am looking for an opportunity to create pseudo-crowns since I cannot use real jobs on UNIX.
Since Python scripts can run indefinitely, I thought Python would be a great solution.
In the Google App Engine, you can customize Python scripts for free. Therefore, I have to use App Engine.
160,000 external URLs are available on the App Engine (right?), So you should have 160000/31/24/60 = 3.6 accesses per minute.
So my script will be:
import time
import urllib
while time.clock() < 86400:
content = urllib.urlopen('http://www.example.org/cronjob_file.php').read()
time.sleep(60)
Unfortunately, I have no way to test the script, so my questions are: 1) Do you think this will work? 2) Is it allowed (Google TOS) to use the service for this type of activity? 3) Is my calculation correct for urls per minute?
Thanks in advance!