i have to parse ODF-format turnstile's data file. In the file are employees entry/out time values in HH:MM:SS (like a 141:59:30).
link to sample file on GoogleDrive
My attempts to open the file with df = pd.read_excel(filename, engine="odf", ...) had crushed with exception: ParserError hour must be in 0..23: 141:59:30.
I tried to open file a several ways:
df = pd.read_excel(filename, engine="odf", skiprows=3)
"skiprows" to cut useless header's rows.df = pd.read_excel(filename, engine="odf", skiprows=3, dtype=str)
"dtype=str" i thought, this option to represent all cells as string, to forbid automaticalliy datetime parsing.
But i haven't rid the ParserError exception. Can you to point me a way to get values like a '141:59:30' as string at time read_excel execution?