I have a data set which includes date/timestamps from New York WITHOUT timezone information. EDT or EST are not recorded.
Dates include daily data for several years, so it includes both:
- EDT Timezone
- EST Timezone
I want to translate those date/timestamps to Frankfurt time.
This involves using:
- CET Timezone
- CEST Timezone
Depending on the specific date.
I have seen that for the NY time, pytz includes timezone('US/Eastern')
, which if I understood correctly includes both timezones (New York Timezones).
For Frankfurt, it seems that you need to explicitly specify CET or CEST (Frankfurt Timezones).
How shall this conversion be done using pytz?