Dict2obj is a Python implementation to transform python dict to object, thus you can access json with easier way "dot", I'm sure this little tool can save your life.
$pip install dict2obj -U
>>>from dict2obj import Dict2Obj
>>>a={"sen":1}
>>>b=Dict2Obj(a)
>>>b.sen
1