I have the following date time in Pandas read from a JSON file
datetime
0 2021-02-04 09:15:00+05:30
1 2021-02-04 09:16:00+05:30
2 2021-02-04 09:17:00+05:30
3 2021-02-04 09:18:00+05:30
4 2021-02-04 09:19:00+05:30
I tried using the following snippet to parse the date time but it made no difference.
data = pd.read_json ('dataset.json', convert_dates=['datetime'])
Here's my expected output
datetime
0 2021-02-04 14:45:00
1 2021-02-04 14:46:00
2 2021-02-04 14:47:00
3 2021-02-04 14:48:00
4 2021-02-04 14:49:00
Please Advise.