dateutil\parser\_parser.py:1207: UnknownTimezoneWarning: tzname CET identified but not understood.
Pass `tzinfos` argument in order to correctly return a timezone-aware datetime.
In a future version, this will raise an exception.
File "D:\Projects\srt\lib-tcpdump-processing\venv\lib\site-packages\dateutil\parser\_parser.py", line 643, in parse
raise ParserError("Unknown string format: %s", timestr)
dateutil.parser._parser.ParserError: Unknown string format: Apr 1, 2020 16:29:53.150479000 W. Europe Daylight Time
with a workaround
srt_packets['frame.time'].replace('W. Europe Daylight Time','CEST', inplace=True, regex=True)
Fixes the following warning:
when the following time is parsed:
Followed this suggestion: https://stackoverflow.com/questions/67061724/panda-to-datetime-raises-warning-tzname-cet-identified-but-not-understood
Also fixed
with a workaround