I am trying to annotate something to my HIT, namely, an AppleID
:
>>> hit = conn.create_hit(
question=q,
reward = 0.05,
max_assignments=3,
title='Question',
annotation='apple_id=123456789'
)
How would I then view the annotation. I am trying the following, but it is not showing there:
>>> hit[0]
<boto.mturk.connection.HIT object at 0x10d311050>
>>> hit[0].__dict__
{
'IsValid': u'True',
'HIT': '',
'Request': '',
'HITId': u'3ZFRE2BDQ9EC3501ZSVWGUVL0EUXZT',
'HITTypeId': u'3I39O3TFTUXGEG283QLYWHJW0ZEJ8V'
}
How would I grab the annotation
field?