Sorry. Been a while since I messed with the code.
Try
mi.set(field key, field value)
e.g.
mi.set('#foo', 'this is what foo is')
If 'foo' is a series-type field, then you need to supply a third parameter that is the series index.
The python prototype is 'def set(self, field, val, extra=None):'
|