I have a .txt file. The format is like this:
12:12 {"name": "alice", "id":"1", "password":"123"}
12:14 {"name": "bob", "id":"2", "password":"1fsdf3"}
12:18 {"name": "claire", "id":"3", "password":"12fs3"}
I want to convert it to a pandas dataframe. The columns would be [timestamp, name, id, password]. Each column would have the corresponding information. Any idea how to do it? Much appreciated!