Redis – How to Convert Python List with Bytes to Pandas DataFrame?
The input is given as: rec = [b'1674278797,14.33681', b'1674278798,6.03617', b'1674278799,12.78418'] I want to get a DataFrame like: df timestamp val 0 1674278797 14.33681 1 1674278798 6.03617 2 1674278799 12.78418 What is the most efficient way? Thanks! If I can convert…