I am having datetime in csv file in UTC tmezone, if i convert it from UTC to pytz.timezone('America/Los_Angeles') or any other America timezone it will omit the 2nd hour(2:MM:SS) from DST(Daylight savings time). Ex: 2019-03-10 00:00:00
directly goes to 1st hour(1:MM:SS) to 3rd hour(3:MM:SS). If i plot line chart using converted datetime in C3(javascript chart library), there is an one hour gap between 1st and 3rd hour.
Note: 2nd hour data was missed while converting UTC to 'America/Los_Angeles' because of DST.
is there any way to parse datetime without missing 2nd hour data?