I have data coming from Redis and I'm struggling to convert this data in DF
Data from Redis
data = ["[Timestamp('2018-05-22 09:15:00'), 3555.75, 3559.15, 3546.45, 3548.3, 34250, 'Green', 34250]",
"[Timestamp('2018-05-22 09:16:00'), 3549.05, 3551, 3543.25, 3548, 19500, 'Green', 53750]",
"[Timestamp('2018-05-22 09:17:00'), 3548.95, 3553.2, 3548.05, 3548.9, 12000, 'Green', 65750]"]
How to store above data in pandas dataframe in below columns
df = pd.DataFrame(columns= 'date','open','high','close','low','volume','close','total_volume'])