data1 = serializers.serialize( "python", members)
print data1[0]
{'pk': 4L, 'model': u'logic.member', 'fields': {'profile': 3L, 'name': u'1', 'title': u'Mr', 'dob': datetime.date(1983, 1, 1), 'lastname': u'jkjk', 'redressno': u'jdsfsfkj', 'gender': u'm'}}
how can i access the fields of this json object
if i do
print data1[0].fields
getting an erro
'dict' object has no attribute 'fields'
They are dictionary keys, not attributes.
etc