How to parse the following python dictionary as key value pair?
{'restiming[0][rt_dur]': '9.490000000000009',
'restiming[1][rt_fet_st]': '116.625',
'restiming[0][rt_st]': '116.625',
'restiming[0][rt_name]': 'http://localhost:63342/Beacon/boomerang/boomerang.js',
'restiming[1][rt_in_type]': 'script'}
output needed:
'rt_dur' : '9.490000000000009'
'rt_fet_st': '116.625'
Any help is appreciated?