I just created a new branch that should make batch creating hits much much easier. I'll merge it later after I have a working example to put into the docs... but here's the branch.
With this, you can run `psiturk -e 'hit create 9 1.00 1'` via a batch script, something like this:
```
while [ : ]
do
`psiturk -e 'hit create 9 1.00 1'`
sleep 1h
done
Except instead of while [ : ] you implement some logic that keeps track of how many you've created so far, and that stops once you've hit your desired level. You'd repeat `psiturk -e 'hit create'` as many times within one loop as you needed. This script would be run in the same dir as your config.txt.
Or you can implement the loop and sleep logic in python and just call a shell script via `from subprocess import call`, shouldn't make a difference.