Support Board
Date/Time: Sun, 24 Nov 2024 09:01:45 +0000
Post From: Python SCID to TSV / CSV and Pandas DataFrame Conversion
[2024-06-20 16:44:27] |
User569223 - Posts: 3 |
in getRecords: in for loop: dataRow = struct.unpack('d4f4I', data) d = struct.unpack('d4f4I', data) When unpacking row in Data, you should be using 'q4ffI' to accommodate datetime of size 64-bit integer. dataRow = struct.unpack('q4f4I', data) d = struct.unpack('q4f4I', data) Date Time Of Last Edit: 2024-06-20 16:44:59
|