I have two different use cases on Mechanical Turk. The first one is where there is one 'task' and I need ten unique workers to complete it. So, 10 HITs and only one worker can do one HIT. An example of this might be a survey in which I want ten people to fill it out:
q = ExternalQuestion(external_url="http://example.com/mturk", frame_height=800)
conn.create_hit(question=q, reward = 0.05, max_assignments=10, title='My Survey')
This produces the required result, as it only shows one available HIT to a worker
How would I then produce a 'task' where it has 10 HITs but one person (or ten) can do them all? An example of this might be someone entering in whether a picture is a boy or a girl. And they should be able to skip one to go on to the next:
How would I do this second use case with create_hit
?