I have a pandas dataframe with a Datetime column:
Datetime
0 2019-01-01 17:02:00
1 2019-01-01 17:03:00
2 2019-01-01 17:04:00
3 2019-01-01 17:05:00
...
The datetimes are in Eastern Standard Time (EST) WITHOUT Daylight savings adjustments (python doesn't know this). I need to convert the datetimes to US Central (Chicago) WITH Daylight savings adjustments. How can I do this, i.e.:
- tell python that the datetimes are in EST with no DST
- convert the datetimes to CT with DST