nmake pandas convert the CSV correctly as strings and not as numbers when inputing case sizes like 0603

This commit is contained in:
Mario Hüttel 2021-12-27 21:33:34 +01:00
parent 7f88dcaab5
commit fdcc35174f

View File

@ -6,7 +6,7 @@ import os
medir = os.path.dirname(__file__)
example_data_path = os.path.join(medir, 'labels.csv')
df = pd.read_csv(example_data_path)
df = pd.read_csv(example_data_path, converters={i: str for i in range(3)})
printer = ql_wrapper.BrotherQlPrinter(model='QL-800', printer_connection='usb://0x04f9:0x209b')